pub struct ServiceResponseAllOf {
pub id: Option<Box<String>>,
pub publish_key: Option<String>,
pub paused: Option<bool>,
pub versions: Option<Vec<SchemasVersionResponse>>,
pub environments: Option<Vec<Environment>>,
}
Fields§
§id: Option<Box<String>>
§publish_key: Option<String>
Unused at this time.
paused: Option<bool>
Whether the service is paused. Services are paused due to a lack of traffic for an extended period of time. Services are resumed either when a draft version is activated or a locked version is cloned and reactivated.
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 ServiceResponseAllOf
impl ServiceResponseAllOf
pub fn new() -> ServiceResponseAllOf
Trait Implementations§
Source§impl Clone for ServiceResponseAllOf
impl Clone for ServiceResponseAllOf
Source§fn clone(&self) -> ServiceResponseAllOf
fn clone(&self) -> ServiceResponseAllOf
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 ServiceResponseAllOf
impl Debug for ServiceResponseAllOf
Source§impl Default for ServiceResponseAllOf
impl Default for ServiceResponseAllOf
Source§fn default() -> ServiceResponseAllOf
fn default() -> ServiceResponseAllOf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceResponseAllOf
impl<'de> Deserialize<'de> for ServiceResponseAllOf
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 ServiceResponseAllOf
impl PartialEq for ServiceResponseAllOf
Source§impl Serialize for ServiceResponseAllOf
impl Serialize for ServiceResponseAllOf
impl StructuralPartialEq for ServiceResponseAllOf
Auto Trait Implementations§
impl Freeze for ServiceResponseAllOf
impl RefUnwindSafe for ServiceResponseAllOf
impl Send for ServiceResponseAllOf
impl Sync for ServiceResponseAllOf
impl Unpin for ServiceResponseAllOf
impl UnwindSafe for ServiceResponseAllOf
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