pub struct OrganizationUpdated {
pub id: Option<String>,
pub changes_requested: Option<ChangesRequested>,
}
Expand description
The details for events with this type
.
Fields§
§id: Option<String>
The organization ID.
changes_requested: Option<ChangesRequested>
The payload used to update the organization settings.
Implementations§
Trait Implementations§
Source§impl Clone for OrganizationUpdated
impl Clone for OrganizationUpdated
Source§fn clone(&self) -> OrganizationUpdated
fn clone(&self) -> OrganizationUpdated
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 OrganizationUpdated
impl Debug for OrganizationUpdated
Source§impl Default for OrganizationUpdated
impl Default for OrganizationUpdated
Source§fn default() -> OrganizationUpdated
fn default() -> OrganizationUpdated
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationUpdated
impl<'de> Deserialize<'de> for OrganizationUpdated
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 OrganizationUpdated
impl PartialEq for OrganizationUpdated
Source§impl Serialize for OrganizationUpdated
impl Serialize for OrganizationUpdated
impl StructuralPartialEq for OrganizationUpdated
Auto Trait Implementations§
impl Freeze for OrganizationUpdated
impl RefUnwindSafe for OrganizationUpdated
impl Send for OrganizationUpdated
impl Sync for OrganizationUpdated
impl Unpin for OrganizationUpdated
impl UnwindSafe for OrganizationUpdated
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