pub struct StatusAllOf {
pub scope: Option<String>,
pub domain: Option<String>,
pub zone: Option<String>,
pub status: Option<String>,
pub tags: Option<String>,
pub offers: Option<Vec<Offer>>,
}Fields§
§scope: Option<String>The scope provided in the status request.
domain: Option<String>The domain provided in the status request.
zone: Option<String>The zone of the domain provided of the status request.
status: Option<String>A space-delimited string of the varying statuses associated with the domain provided.
A space-delimited string of the varying tags associated with the domain provided.
offers: Option<Vec<Offer>>Implementations§
Source§impl StatusAllOf
impl StatusAllOf
pub fn new() -> StatusAllOf
Trait Implementations§
Source§impl Clone for StatusAllOf
impl Clone for StatusAllOf
Source§fn clone(&self) -> StatusAllOf
fn clone(&self) -> StatusAllOf
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 StatusAllOf
impl Debug for StatusAllOf
Source§impl Default for StatusAllOf
impl Default for StatusAllOf
Source§fn default() -> StatusAllOf
fn default() -> StatusAllOf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StatusAllOf
impl<'de> Deserialize<'de> for StatusAllOf
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 StatusAllOf
impl PartialEq for StatusAllOf
Source§impl Serialize for StatusAllOf
impl Serialize for StatusAllOf
impl StructuralPartialEq for StatusAllOf
Auto Trait Implementations§
impl Freeze for StatusAllOf
impl RefUnwindSafe for StatusAllOf
impl Send for StatusAllOf
impl Sync for StatusAllOf
impl Unpin for StatusAllOf
impl UnwindSafe for StatusAllOf
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