pub struct CommentInput {
pub profile: RecordProfile,
pub kind: LifecycleCommentKind,
pub path: Option<String>,
pub commit: Option<String>,
pub content: Option<String>,
pub title: Option<String>,
pub details_summary: Option<String>,
}Fields§
§profile: RecordProfile§kind: LifecycleCommentKind§path: Option<String>§commit: Option<String>§content: Option<String>§title: Option<String>§details_summary: Option<String>Trait Implementations§
Source§impl Clone for CommentInput
impl Clone for CommentInput
Source§fn clone(&self) -> CommentInput
fn clone(&self) -> CommentInput
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 moreAuto Trait Implementations§
impl Freeze for CommentInput
impl RefUnwindSafe for CommentInput
impl Send for CommentInput
impl Sync for CommentInput
impl Unpin for CommentInput
impl UnsafeUnpin for CommentInput
impl UnwindSafe for CommentInput
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