pub struct IssueCloseNotification {
pub close_reason: i32,
pub message_text: String,
}
Fields§
§close_reason: i32
§message_text: String
Trait Implementations§
Source§impl BaseParser for IssueCloseNotification
impl BaseParser for IssueCloseNotification
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
Source§impl Clone for IssueCloseNotification
impl Clone for IssueCloseNotification
Source§fn clone(&self) -> IssueCloseNotification
fn clone(&self) -> IssueCloseNotification
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 IssueCloseNotification
impl Debug for IssueCloseNotification
Source§impl Default for IssueCloseNotification
impl Default for IssueCloseNotification
Source§fn default() -> IssueCloseNotification
fn default() -> IssueCloseNotification
Returns the “default value” for a type. Read more
Source§impl PartialEq for IssueCloseNotification
impl PartialEq for IssueCloseNotification
impl StructuralPartialEq for IssueCloseNotification
Auto Trait Implementations§
impl Freeze for IssueCloseNotification
impl RefUnwindSafe for IssueCloseNotification
impl Send for IssueCloseNotification
impl Sync for IssueCloseNotification
impl Unpin for IssueCloseNotification
impl UnwindSafe for IssueCloseNotification
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