Struct github_rest::model::repositories::events::ProjectCardEvent
source · pub struct ProjectCardEvent {
pub action: ProjectCardAction,
pub changes: Option<ProjectCardChanges>,
pub after_id: usize,
pub project_card: ProjectCard,
pub event_info: RepoEventInfo,
}
Expand description
Fields§
§action: ProjectCardAction
§changes: Option<ProjectCardChanges>
§after_id: usize
§project_card: ProjectCard
§event_info: RepoEventInfo
Trait Implementations§
source§impl AsRef<RepoEventInfo> for ProjectCardEvent
impl AsRef<RepoEventInfo> for ProjectCardEvent
source§fn as_ref(&self) -> &RepoEventInfo
fn as_ref(&self) -> &RepoEventInfo
Converts this type into a shared reference of the (usually inferred) input type.
source§impl Clone for ProjectCardEvent
impl Clone for ProjectCardEvent
source§fn clone(&self) -> ProjectCardEvent
fn clone(&self) -> ProjectCardEvent
Returns a copy 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 ProjectCardEvent
impl Debug for ProjectCardEvent
source§impl Deref for ProjectCardEvent
impl Deref for ProjectCardEvent
source§impl<'de> Deserialize<'de> for ProjectCardEvent
impl<'de> Deserialize<'de> for ProjectCardEvent
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 Event<'_> for ProjectCardEvent
impl Event<'_> for ProjectCardEvent
source§impl PartialEq<ProjectCardEvent> for ProjectCardEvent
impl PartialEq<ProjectCardEvent> for ProjectCardEvent
source§fn eq(&self, other: &ProjectCardEvent) -> bool
fn eq(&self, other: &ProjectCardEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ProjectCardEvent
impl Serialize for ProjectCardEvent
impl StructuralPartialEq for ProjectCardEvent
Auto Trait Implementations§
impl RefUnwindSafe for ProjectCardEvent
impl Send for ProjectCardEvent
impl Sync for ProjectCardEvent
impl Unpin for ProjectCardEvent
impl UnwindSafe for ProjectCardEvent
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