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