pub struct DeveloperComment {
pub last_modified: Option<Timestamp>,
pub text: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§last_modified: Option<Timestamp>The last time at which this comment was updated.
text: Option<String>The content of the comment, i.e. reply body.
Trait Implementations§
Source§impl Clone for DeveloperComment
impl Clone for DeveloperComment
Source§fn clone(&self) -> DeveloperComment
fn clone(&self) -> DeveloperComment
Returns a duplicate 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 DeveloperComment
impl Debug for DeveloperComment
Source§impl Default for DeveloperComment
impl Default for DeveloperComment
Source§fn default() -> DeveloperComment
fn default() -> DeveloperComment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeveloperComment
impl<'de> Deserialize<'de> for DeveloperComment
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 Serialize for DeveloperComment
impl Serialize for DeveloperComment
impl Part for DeveloperComment
Auto Trait Implementations§
impl Freeze for DeveloperComment
impl RefUnwindSafe for DeveloperComment
impl Send for DeveloperComment
impl Sync for DeveloperComment
impl Unpin for DeveloperComment
impl UnwindSafe for DeveloperComment
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