pub struct ServiceListResponseAllOf {
pub id: Option<Box<String>>,
pub version: Option<i32>,
pub versions: Option<Vec<SchemasVersionResponse>>,
pub environments: Option<Vec<Environment>>,
}Fields§
§id: Option<Box<String>>§version: Option<i32>Current version of the service.
versions: Option<Vec<SchemasVersionResponse>>A list of versions associated with the service.
environments: Option<Vec<Environment>>A list of environments where the service has been deployed.
Implementations§
Source§impl ServiceListResponseAllOf
impl ServiceListResponseAllOf
pub fn new() -> ServiceListResponseAllOf
Trait Implementations§
Source§impl Clone for ServiceListResponseAllOf
impl Clone for ServiceListResponseAllOf
Source§fn clone(&self) -> ServiceListResponseAllOf
fn clone(&self) -> ServiceListResponseAllOf
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 ServiceListResponseAllOf
impl Debug for ServiceListResponseAllOf
Source§impl Default for ServiceListResponseAllOf
impl Default for ServiceListResponseAllOf
Source§fn default() -> ServiceListResponseAllOf
fn default() -> ServiceListResponseAllOf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceListResponseAllOf
impl<'de> Deserialize<'de> for ServiceListResponseAllOf
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 ServiceListResponseAllOf
impl PartialEq for ServiceListResponseAllOf
Source§impl Serialize for ServiceListResponseAllOf
impl Serialize for ServiceListResponseAllOf
impl StructuralPartialEq for ServiceListResponseAllOf
Auto Trait Implementations§
impl Freeze for ServiceListResponseAllOf
impl RefUnwindSafe for ServiceListResponseAllOf
impl Send for ServiceListResponseAllOf
impl Sync for ServiceListResponseAllOf
impl Unpin for ServiceListResponseAllOf
impl UnwindSafe for ServiceListResponseAllOf
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