Struct dropbox_sdk::files::FileLockMetadata
source · [−]#[non_exhaustive]pub struct FileLockMetadata {
pub is_lockholder: Option<bool>,
pub lockholder_name: Option<String>,
pub lockholder_account_id: Option<AccountId>,
pub created: Option<DropboxTimestamp>,
}
Available on crate feature
dbx_files
only.Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.is_lockholder: Option<bool>
True if caller holds the file lock.
lockholder_name: Option<String>
The display name of the lock holder.
lockholder_account_id: Option<AccountId>
The account ID of the lock holder if known.
created: Option<DropboxTimestamp>
The timestamp of the lock was created.
Implementations
sourceimpl FileLockMetadata
impl FileLockMetadata
pub fn with_is_lockholder(self, value: bool) -> Self
pub fn with_lockholder_name(self, value: String) -> Self
pub fn with_lockholder_account_id(self, value: AccountId) -> Self
pub fn with_created(self, value: DropboxTimestamp) -> Self
Trait Implementations
sourceimpl Clone for FileLockMetadata
impl Clone for FileLockMetadata
sourcefn clone(&self) -> FileLockMetadata
fn clone(&self) -> FileLockMetadata
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for FileLockMetadata
impl Debug for FileLockMetadata
sourceimpl Default for FileLockMetadata
impl Default for FileLockMetadata
sourcefn default() -> FileLockMetadata
fn default() -> FileLockMetadata
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FileLockMetadata
impl<'de> Deserialize<'de> for FileLockMetadata
sourcefn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<FileLockMetadata> for FileLockMetadata
impl PartialEq<FileLockMetadata> for FileLockMetadata
sourcefn eq(&self, other: &FileLockMetadata) -> bool
fn eq(&self, other: &FileLockMetadata) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FileLockMetadata) -> bool
fn ne(&self, other: &FileLockMetadata) -> bool
This method tests for !=
.
sourceimpl Serialize for FileLockMetadata
impl Serialize for FileLockMetadata
impl Eq for FileLockMetadata
impl StructuralEq for FileLockMetadata
impl StructuralPartialEq for FileLockMetadata
Auto Trait Implementations
impl RefUnwindSafe for FileLockMetadata
impl Send for FileLockMetadata
impl Sync for FileLockMetadata
impl Unpin for FileLockMetadata
impl UnwindSafe for FileLockMetadata
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more