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