Struct dropbox_sdk::team_log::FileUnlikeCommentDetails
source · [−]Available on crate feature
dbx_team_log only.Expand description
Unliked file comment.
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.comment_text: Option<String>Comment text.
Implementations
sourceimpl FileUnlikeCommentDetails
impl FileUnlikeCommentDetails
pub fn with_comment_text(self, value: String) -> Self
Trait Implementations
sourceimpl Clone for FileUnlikeCommentDetails
impl Clone for FileUnlikeCommentDetails
sourcefn clone(&self) -> FileUnlikeCommentDetails
fn clone(&self) -> FileUnlikeCommentDetails
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 FileUnlikeCommentDetails
impl Debug for FileUnlikeCommentDetails
sourceimpl Default for FileUnlikeCommentDetails
impl Default for FileUnlikeCommentDetails
sourcefn default() -> FileUnlikeCommentDetails
fn default() -> FileUnlikeCommentDetails
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FileUnlikeCommentDetails
impl<'de> Deserialize<'de> for FileUnlikeCommentDetails
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<FileUnlikeCommentDetails> for FileUnlikeCommentDetails
impl PartialEq<FileUnlikeCommentDetails> for FileUnlikeCommentDetails
sourcefn eq(&self, other: &FileUnlikeCommentDetails) -> bool
fn eq(&self, other: &FileUnlikeCommentDetails) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &FileUnlikeCommentDetails) -> bool
fn ne(&self, other: &FileUnlikeCommentDetails) -> bool
This method tests for !=.
sourceimpl Serialize for FileUnlikeCommentDetails
impl Serialize for FileUnlikeCommentDetails
impl Eq for FileUnlikeCommentDetails
impl StructuralEq for FileUnlikeCommentDetails
impl StructuralPartialEq for FileUnlikeCommentDetails
Auto Trait Implementations
impl RefUnwindSafe for FileUnlikeCommentDetails
impl Send for FileUnlikeCommentDetails
impl Sync for FileUnlikeCommentDetails
impl Unpin for FileUnlikeCommentDetails
impl UnwindSafe for FileUnlikeCommentDetails
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