pub struct VersionExtended {
pub collections: Option<Vec<VersionExtendedCollectionsItem>>,
pub created_at: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub release_notes: Option<String>,
pub schemas: Option<Vec<VersionExtendedSchemasItem>>,
pub updated_at: Option<String>,
}
Fields§
§collections: Option<Vec<VersionExtendedCollectionsItem>>
A list of the version’s collections.
created_at: Option<String>
The date and time at which the version was created.
id: Option<String>
The version’s ID.
name: Option<String>
The version’s name.
release_notes: Option<String>
The version’s release notes.
schemas: Option<Vec<VersionExtendedSchemasItem>>
A list of the version’s API schemas.
updated_at: Option<String>
The date and time at which the version was last updated.
Trait Implementations§
Source§impl Clone for VersionExtended
impl Clone for VersionExtended
Source§fn clone(&self) -> VersionExtended
fn clone(&self) -> VersionExtended
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 VersionExtended
impl Debug for VersionExtended
Source§impl<'de> Deserialize<'de> for VersionExtended
impl<'de> Deserialize<'de> for VersionExtended
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 PartialEq for VersionExtended
impl PartialEq for VersionExtended
Source§impl Serialize for VersionExtended
impl Serialize for VersionExtended
impl StructuralPartialEq for VersionExtended
Auto Trait Implementations§
impl Freeze for VersionExtended
impl RefUnwindSafe for VersionExtended
impl Send for VersionExtended
impl Sync for VersionExtended
impl Unpin for VersionExtended
impl UnwindSafe for VersionExtended
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