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