pub struct FolderLocks {
pub entries: Option<Vec<FolderLock>>,
pub limit: Option<String>,
pub next_marker: Option<Option<String>>,
}Fields§
§entries: Option<Vec<FolderLock>>§limit: Option<String>§next_marker: Option<Option<String>>Trait Implementations§
Source§impl Clone for FolderLocks
impl Clone for FolderLocks
Source§fn clone(&self) -> FolderLocks
fn clone(&self) -> FolderLocks
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FolderLocks
impl Debug for FolderLocks
Source§impl Default for FolderLocks
impl Default for FolderLocks
Source§fn default() -> FolderLocks
fn default() -> FolderLocks
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FolderLocks
impl<'de> Deserialize<'de> for FolderLocks
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
Source§impl PartialEq for FolderLocks
impl PartialEq for FolderLocks
Source§impl Serialize for FolderLocks
impl Serialize for FolderLocks
impl StructuralPartialEq for FolderLocks
Auto Trait Implementations§
impl Freeze for FolderLocks
impl RefUnwindSafe for FolderLocks
impl Send for FolderLocks
impl Sync for FolderLocks
impl Unpin for FolderLocks
impl UnsafeUnpin for FolderLocks
impl UnwindSafe for FolderLocks
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