pub struct OrganizationalEventSchemaConfig {
pub id: String,
pub event_type: OrganizationalEventTypeSchemaConfig,
pub effective_date: String,
pub transition_months: u32,
pub description: Option<String>,
}Expand description
Configuration for a single organizational event.
Fields§
§id: StringEvent ID.
event_type: OrganizationalEventTypeSchemaConfigEvent type and configuration.
effective_date: StringEffective date.
transition_months: u32Transition duration in months.
description: Option<String>Description.
Trait Implementations§
Source§impl Clone for OrganizationalEventSchemaConfig
impl Clone for OrganizationalEventSchemaConfig
Source§fn clone(&self) -> OrganizationalEventSchemaConfig
fn clone(&self) -> OrganizationalEventSchemaConfig
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<'de> Deserialize<'de> for OrganizationalEventSchemaConfig
impl<'de> Deserialize<'de> for OrganizationalEventSchemaConfig
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
Auto Trait Implementations§
impl Freeze for OrganizationalEventSchemaConfig
impl RefUnwindSafe for OrganizationalEventSchemaConfig
impl Send for OrganizationalEventSchemaConfig
impl Sync for OrganizationalEventSchemaConfig
impl Unpin for OrganizationalEventSchemaConfig
impl UnwindSafe for OrganizationalEventSchemaConfig
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