pub enum InstallationCreatedAt {
Variant0(DateTime<Utc>),
Variant1(i64),
}
Expand description
InstallationCreatedAt
JSON schema
{
"oneOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "integer"
}
]
}
Variants§
Trait Implementations§
Source§impl Clone for InstallationCreatedAt
impl Clone for InstallationCreatedAt
Source§fn clone(&self) -> InstallationCreatedAt
fn clone(&self) -> InstallationCreatedAt
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 InstallationCreatedAt
impl Debug for InstallationCreatedAt
Source§impl<'de> Deserialize<'de> for InstallationCreatedAt
impl<'de> Deserialize<'de> for InstallationCreatedAt
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 From<&InstallationCreatedAt> for InstallationCreatedAt
impl From<&InstallationCreatedAt> for InstallationCreatedAt
Source§fn from(value: &InstallationCreatedAt) -> Self
fn from(value: &InstallationCreatedAt) -> Self
Converts to this type from the input type.
Source§impl From<i64> for InstallationCreatedAt
impl From<i64> for InstallationCreatedAt
Source§impl FromStr for InstallationCreatedAt
impl FromStr for InstallationCreatedAt
Source§impl Serialize for InstallationCreatedAt
impl Serialize for InstallationCreatedAt
Source§impl ToString for InstallationCreatedAt
impl ToString for InstallationCreatedAt
Source§impl TryFrom<&String> for InstallationCreatedAt
impl TryFrom<&String> for InstallationCreatedAt
Source§impl TryFrom<&str> for InstallationCreatedAt
impl TryFrom<&str> for InstallationCreatedAt
Auto Trait Implementations§
impl Freeze for InstallationCreatedAt
impl RefUnwindSafe for InstallationCreatedAt
impl Send for InstallationCreatedAt
impl Sync for InstallationCreatedAt
impl Unpin for InstallationCreatedAt
impl UnwindSafe for InstallationCreatedAt
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