pub struct DraftResult {
pub platform: String,
pub body: String,
pub length: usize,
pub length_cap: usize,
pub capped: bool,
pub retries: usize,
pub title: Option<String>,
pub tweet_count: Option<usize>,
}Fields§
§platform: String§body: String§length: usize§length_cap: usize§capped: bool§retries: usize§title: Option<String>§tweet_count: Option<usize>Trait Implementations§
Source§impl Clone for DraftResult
impl Clone for DraftResult
Source§fn clone(&self) -> DraftResult
fn clone(&self) -> DraftResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DraftResult
impl Debug for DraftResult
Auto Trait Implementations§
impl Freeze for DraftResult
impl RefUnwindSafe for DraftResult
impl Send for DraftResult
impl Sync for DraftResult
impl Unpin for DraftResult
impl UnsafeUnpin for DraftResult
impl UnwindSafe for DraftResult
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