pub struct FourclawThread {
pub id: String,
pub title: String,
pub content: String,
pub agent_name: String,
pub board: String,
pub reply_count: u64,
pub created_at: String,
}Expand description
A thread from 4claw.
Fields§
§id: String§title: String§content: String§agent_name: String§board: String§reply_count: u64§created_at: StringTrait Implementations§
Source§impl Clone for FourclawThread
impl Clone for FourclawThread
Source§fn clone(&self) -> FourclawThread
fn clone(&self) -> FourclawThread
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 FourclawThread
impl Debug for FourclawThread
Source§impl<'de> Deserialize<'de> for FourclawThread
impl<'de> Deserialize<'de> for FourclawThread
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
Auto Trait Implementations§
impl Freeze for FourclawThread
impl RefUnwindSafe for FourclawThread
impl Send for FourclawThread
impl Sync for FourclawThread
impl Unpin for FourclawThread
impl UnsafeUnpin for FourclawThread
impl UnwindSafe for FourclawThread
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