#[non_exhaustive]pub struct PreviewResult {
pub file_metadata: Option<FileMetadata>,
pub link_metadata: Option<MinimalFileLinkMetadata>,
}
Available on crate features
sync_routes
and 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.file_metadata: Option<FileMetadata>
Metadata corresponding to the file received as an argument. Will be populated if the endpoint is called with a path (ReadPath).
link_metadata: Option<MinimalFileLinkMetadata>
Minimal metadata corresponding to the file received as an argument. Will be populated if the endpoint is called using a shared link (SharedLinkFileInfo).
Implementations§
Source§impl PreviewResult
impl PreviewResult
pub fn with_file_metadata(self, value: FileMetadata) -> Self
pub fn with_link_metadata(self, value: MinimalFileLinkMetadata) -> Self
Trait Implementations§
Source§impl Clone for PreviewResult
impl Clone for PreviewResult
Source§fn clone(&self) -> PreviewResult
fn clone(&self) -> PreviewResult
Returns a copy 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 PreviewResult
impl Debug for PreviewResult
Source§impl Default for PreviewResult
impl Default for PreviewResult
Source§fn default() -> PreviewResult
fn default() -> PreviewResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PreviewResult
impl<'de> Deserialize<'de> for PreviewResult
Source§fn 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
Source§impl PartialEq for PreviewResult
impl PartialEq for PreviewResult
Source§impl Serialize for PreviewResult
impl Serialize for PreviewResult
impl StructuralPartialEq for PreviewResult
Auto Trait Implementations§
impl Freeze for PreviewResult
impl RefUnwindSafe for PreviewResult
impl Send for PreviewResult
impl Sync for PreviewResult
impl Unpin for PreviewResult
impl UnwindSafe for PreviewResult
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