pub struct NewReply {
pub body: String,
pub labels: Vec<String>,
pub refs: Vec<String>,
pub attachments: Vec<Attachment>,
}Expand description
Spec for replying to a post.
Fields§
§body: StringReply body.
labels: Vec<String>Labels.
refs: Vec<String>References.
attachments: Vec<Attachment>Pre-staged attachments.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NewReply
impl RefUnwindSafe for NewReply
impl Send for NewReply
impl Sync for NewReply
impl Unpin for NewReply
impl UnsafeUnpin for NewReply
impl UnwindSafe for NewReply
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