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