pub struct EventTypeOut {
pub archived: Option<bool>,
pub created_at: String,
pub description: String,
pub name: String,
pub schemas: Option<HashMap<String, Value>>,
pub updated_at: String,
}
Fields§
§archived: Option<bool>
§created_at: String
§description: String
§name: String
§schemas: Option<HashMap<String, Value>>
The schema for the event type for a specific version as a JSON schema.
updated_at: String
Implementations§
Source§impl EventTypeOut
impl EventTypeOut
Trait Implementations§
Source§impl Clone for EventTypeOut
impl Clone for EventTypeOut
Source§fn clone(&self) -> EventTypeOut
fn clone(&self) -> EventTypeOut
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 EventTypeOut
impl Debug for EventTypeOut
Source§impl Default for EventTypeOut
impl Default for EventTypeOut
Source§fn default() -> EventTypeOut
fn default() -> EventTypeOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventTypeOut
impl<'de> Deserialize<'de> for EventTypeOut
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 EventTypeOut
impl PartialEq for EventTypeOut
Source§impl Serialize for EventTypeOut
impl Serialize for EventTypeOut
impl StructuralPartialEq for EventTypeOut
Auto Trait Implementations§
impl Freeze for EventTypeOut
impl RefUnwindSafe for EventTypeOut
impl Send for EventTypeOut
impl Sync for EventTypeOut
impl Unpin for EventTypeOut
impl UnwindSafe for EventTypeOut
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