pub struct SdkVersion {
pub min: Option<i32>,
}Expand description
Represents an sdk version.
This type is not used in any activity, and only used as part of another schema.
Fields§
§min: Option<i32>Inclusive minimum value of an sdk version.
Trait Implementations§
Source§impl Clone for SdkVersion
impl Clone for SdkVersion
Source§fn clone(&self) -> SdkVersion
fn clone(&self) -> SdkVersion
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 SdkVersion
impl Debug for SdkVersion
Source§impl Default for SdkVersion
impl Default for SdkVersion
Source§fn default() -> SdkVersion
fn default() -> SdkVersion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SdkVersion
impl<'de> Deserialize<'de> for SdkVersion
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 Serialize for SdkVersion
impl Serialize for SdkVersion
impl Part for SdkVersion
Auto Trait Implementations§
impl Freeze for SdkVersion
impl RefUnwindSafe for SdkVersion
impl Send for SdkVersion
impl Sync for SdkVersion
impl Unpin for SdkVersion
impl UnwindSafe for SdkVersion
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