Struct post_archiver::structs::ArchiveComment
source · pub struct ArchiveComment {
pub user: String,
pub text: String,
pub replies: Vec<ArchiveComment>,
}Fields§
§user: String§text: String§replies: Vec<ArchiveComment>Trait Implementations§
source§impl Clone for ArchiveComment
impl Clone for ArchiveComment
source§fn clone(&self) -> ArchiveComment
fn clone(&self) -> ArchiveComment
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 ArchiveComment
impl Debug for ArchiveComment
source§impl<'de> Deserialize<'de> for ArchiveComment
impl<'de> Deserialize<'de> for ArchiveComment
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 Hash for ArchiveComment
impl Hash for ArchiveComment
Auto Trait Implementations§
impl Freeze for ArchiveComment
impl RefUnwindSafe for ArchiveComment
impl Send for ArchiveComment
impl Sync for ArchiveComment
impl Unpin for ArchiveComment
impl UnwindSafe for ArchiveComment
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