Struct dropbox_sdk::account::SetProfilePhotoResult
source · [−]#[non_exhaustive]pub struct SetProfilePhotoResult {
pub profile_photo_url: String,
}Available on crate feature
dbx_account 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.profile_photo_url: StringURL for the photo representing the user, if one is set.
Implementations
Trait Implementations
sourceimpl Clone for SetProfilePhotoResult
impl Clone for SetProfilePhotoResult
sourcefn clone(&self) -> SetProfilePhotoResult
fn clone(&self) -> SetProfilePhotoResult
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 SetProfilePhotoResult
impl Debug for SetProfilePhotoResult
sourceimpl<'de> Deserialize<'de> for SetProfilePhotoResult
impl<'de> Deserialize<'de> for SetProfilePhotoResult
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<SetProfilePhotoResult> for SetProfilePhotoResult
impl PartialEq<SetProfilePhotoResult> for SetProfilePhotoResult
sourcefn eq(&self, other: &SetProfilePhotoResult) -> bool
fn eq(&self, other: &SetProfilePhotoResult) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &SetProfilePhotoResult) -> bool
fn ne(&self, other: &SetProfilePhotoResult) -> bool
This method tests for !=.
sourceimpl Serialize for SetProfilePhotoResult
impl Serialize for SetProfilePhotoResult
impl Eq for SetProfilePhotoResult
impl StructuralEq for SetProfilePhotoResult
impl StructuralPartialEq for SetProfilePhotoResult
Auto Trait Implementations
impl RefUnwindSafe for SetProfilePhotoResult
impl Send for SetProfilePhotoResult
impl Sync for SetProfilePhotoResult
impl Unpin for SetProfilePhotoResult
impl UnwindSafe for SetProfilePhotoResult
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