pub struct WikiUpdatedNotificationMessage {
pub collection_id: Option<String>,
pub project_id: Option<String>,
pub repository_id: Option<String>,
}Fields§
§collection_id: Option<String>Collection host Id for which the wikis are updated.
project_id: Option<String>Project Id for which the wikis are updated.
repository_id: Option<String>Repository Id associated with the particular wiki which is added, updated or deleted.
Implementations§
Trait Implementations§
Source§impl Clone for WikiUpdatedNotificationMessage
impl Clone for WikiUpdatedNotificationMessage
Source§fn clone(&self) -> WikiUpdatedNotificationMessage
fn clone(&self) -> WikiUpdatedNotificationMessage
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 Default for WikiUpdatedNotificationMessage
impl Default for WikiUpdatedNotificationMessage
Source§fn default() -> WikiUpdatedNotificationMessage
fn default() -> WikiUpdatedNotificationMessage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WikiUpdatedNotificationMessage
impl<'de> Deserialize<'de> for WikiUpdatedNotificationMessage
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 WikiUpdatedNotificationMessage
impl PartialEq for WikiUpdatedNotificationMessage
Source§fn eq(&self, other: &WikiUpdatedNotificationMessage) -> bool
fn eq(&self, other: &WikiUpdatedNotificationMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WikiUpdatedNotificationMessage
Auto Trait Implementations§
impl Freeze for WikiUpdatedNotificationMessage
impl RefUnwindSafe for WikiUpdatedNotificationMessage
impl Send for WikiUpdatedNotificationMessage
impl Sync for WikiUpdatedNotificationMessage
impl Unpin for WikiUpdatedNotificationMessage
impl UnwindSafe for WikiUpdatedNotificationMessage
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