pub struct EditIssueCommentOption {
pub body: String,
pub updated_at: Option<OffsetDateTime>,
}Expand description
EditIssueCommentOption options for editing a comment
Fields§
§body: String§updated_at: Option<OffsetDateTime>Trait Implementations§
Source§impl Clone for EditIssueCommentOption
impl Clone for EditIssueCommentOption
Source§fn clone(&self) -> EditIssueCommentOption
fn clone(&self) -> EditIssueCommentOption
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 EditIssueCommentOption
impl Debug for EditIssueCommentOption
Source§impl<'de> Deserialize<'de> for EditIssueCommentOption
impl<'de> Deserialize<'de> for EditIssueCommentOption
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 PartialEq for EditIssueCommentOption
impl PartialEq for EditIssueCommentOption
Source§impl Serialize for EditIssueCommentOption
impl Serialize for EditIssueCommentOption
impl StructuralPartialEq for EditIssueCommentOption
Auto Trait Implementations§
impl Freeze for EditIssueCommentOption
impl RefUnwindSafe for EditIssueCommentOption
impl Send for EditIssueCommentOption
impl Sync for EditIssueCommentOption
impl Unpin for EditIssueCommentOption
impl UnwindSafe for EditIssueCommentOption
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