pub struct PathIn {
pub id: Option<String>,
pub path: Option<String>,
}Fields§
§id: Option<String>ID is the sandbox to read from, from an earlier lease.
path: Option<String>Path is read relative to the sandbox’s working directory unless it is absolute, and a path that climbs out of it is refused rather than rewritten. Empty names the working directory itself, which lists it.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PathIn
impl<'de> Deserialize<'de> for PathIn
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for PathIn
Auto Trait Implementations§
impl Freeze for PathIn
impl RefUnwindSafe for PathIn
impl Send for PathIn
impl Sync for PathIn
impl Unpin for PathIn
impl UnsafeUnpin for PathIn
impl UnwindSafe for PathIn
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