pub struct CreateApiVersionNonGitLinked {
pub collections: Option<Vec<CreateApiVersionNonGitLinkedCollectionsItem>>,
pub name: Option<String>,
pub release_notes: Option<String>,
pub schemas: Option<Vec<CreateApiVersionNonGitLinkedSchemasItem>>,
}
Fields§
§collections: Option<Vec<CreateApiVersionNonGitLinkedCollectionsItem>>
A list of the version’s collections.
name: Option<String>
The version’s name.
release_notes: Option<String>
Information about the API version release. For example, changelog notes.
schemas: Option<Vec<CreateApiVersionNonGitLinkedSchemasItem>>
A list of the version’s schemas.
Trait Implementations§
Source§impl Clone for CreateApiVersionNonGitLinked
impl Clone for CreateApiVersionNonGitLinked
Source§fn clone(&self) -> CreateApiVersionNonGitLinked
fn clone(&self) -> CreateApiVersionNonGitLinked
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 CreateApiVersionNonGitLinked
impl Debug for CreateApiVersionNonGitLinked
Source§impl<'de> Deserialize<'de> for CreateApiVersionNonGitLinked
impl<'de> Deserialize<'de> for CreateApiVersionNonGitLinked
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 CreateApiVersionNonGitLinked
impl PartialEq for CreateApiVersionNonGitLinked
Source§fn eq(&self, other: &CreateApiVersionNonGitLinked) -> bool
fn eq(&self, other: &CreateApiVersionNonGitLinked) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateApiVersionNonGitLinked
Auto Trait Implementations§
impl Freeze for CreateApiVersionNonGitLinked
impl RefUnwindSafe for CreateApiVersionNonGitLinked
impl Send for CreateApiVersionNonGitLinked
impl Sync for CreateApiVersionNonGitLinked
impl Unpin for CreateApiVersionNonGitLinked
impl UnwindSafe for CreateApiVersionNonGitLinked
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