pub struct PathOptions {
pub dir_name: Option<String>,
pub current_path: Option<String>,
}Expand description
Optional path options sent from the guest side.
Fields§
§dir_name: Option<String>§current_path: Option<String>Trait Implementations§
Source§impl Clone for PathOptions
impl Clone for PathOptions
Source§fn clone(&self) -> PathOptions
fn clone(&self) -> PathOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PathOptions
impl Debug for PathOptions
Source§impl<'de> Deserialize<'de> for PathOptions
impl<'de> Deserialize<'de> for PathOptions
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
Auto Trait Implementations§
impl Freeze for PathOptions
impl RefUnwindSafe for PathOptions
impl Send for PathOptions
impl Sync for PathOptions
impl Unpin for PathOptions
impl UnsafeUnpin for PathOptions
impl UnwindSafe for PathOptions
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