pub struct RealisedString {
pub s: String,
pub paths: Vec<StorePath>,
}Expand description
A string value with its associated store paths.
Represents a Nix string with references to store paths.
Fields§
§s: StringThe string content.
paths: Vec<StorePath>Store paths referenced by the string.
Auto Trait Implementations§
impl Freeze for RealisedString
impl RefUnwindSafe for RealisedString
impl !Send for RealisedString
impl !Sync for RealisedString
impl Unpin for RealisedString
impl UnwindSafe for RealisedString
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more