pub struct ProjectChangedNotification {
pub change_type: ProjectChangeType,
pub project_id: String,
}Expand description
project/changed — a project was created, updated, or deleted.
Fields§
§change_type: ProjectChangeType§project_id: StringTrait Implementations§
Source§impl Clone for ProjectChangedNotification
impl Clone for ProjectChangedNotification
Source§fn clone(&self) -> ProjectChangedNotification
fn clone(&self) -> ProjectChangedNotification
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 moreSource§impl Debug for ProjectChangedNotification
impl Debug for ProjectChangedNotification
Source§impl<'de> Deserialize<'de> for ProjectChangedNotification
impl<'de> Deserialize<'de> for ProjectChangedNotification
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
impl StructuralPartialEq for ProjectChangedNotification
Auto Trait Implementations§
impl Freeze for ProjectChangedNotification
impl RefUnwindSafe for ProjectChangedNotification
impl Send for ProjectChangedNotification
impl Sync for ProjectChangedNotification
impl Unpin for ProjectChangedNotification
impl UnsafeUnpin for ProjectChangedNotification
impl UnwindSafe for ProjectChangedNotification
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