pub struct Ls<'a> {
pub path: &'a str,
pub resolve_type: Option<bool>,
pub size: Option<bool>,
pub stream: Option<bool>,
}
Fields§
§path: &'a str
§resolve_type: Option<bool>
Resolve linked objects to find out their types. Default: true
size: Option<bool>
Resolve linked objects to find out their file size. Default: true
stream: Option<bool>
Enable experimental streaming of directory entries as they are traversed.
Trait Implementations§
Source§impl<'a> ApiRequest for Ls<'a>
impl<'a> ApiRequest for Ls<'a>
Source§impl<'a> Serialize for Ls<'a>
impl<'a> Serialize for Ls<'a>
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl<'a> Freeze for Ls<'a>
impl<'a> RefUnwindSafe for Ls<'a>
impl<'a> Send for Ls<'a>
impl<'a> Sync for Ls<'a>
impl<'a> Unpin for Ls<'a>
impl<'a> UnwindSafe for Ls<'a>
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