pub struct DirMeta {
pub path: String,
pub total_entries: usize,
pub returned_entries: usize,
pub offset: usize,
pub limit: usize,
pub more: bool,
}Fields§
§path: String§total_entries: usize§returned_entries: usize§offset: usize§limit: usize§more: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for DirMeta
impl<'de> Deserialize<'de> for DirMeta
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 DirMeta
impl RefUnwindSafe for DirMeta
impl Send for DirMeta
impl Sync for DirMeta
impl Unpin for DirMeta
impl UnsafeUnpin for DirMeta
impl UnwindSafe for DirMeta
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