pub struct RangeSlotCapacity {
pub resource_id: Option<String>,
pub capacities: Option<Vec<RangeCapacity>>,
pub next_page_token: Option<String>,
}Expand description
RangeSlotCapacity : Response schema for the getRangeSlotCapacity operation.
Fields
resource_id: Option<String>Resource Identifier.
capacities: Option<Vec<RangeCapacity>>Array of range capacities where each entry is for a specific capacity type.
next_page_token: Option<String>Next page token, if there are more pages.
Implementations
sourceimpl RangeSlotCapacity
impl RangeSlotCapacity
sourcepub fn new() -> RangeSlotCapacity
pub fn new() -> RangeSlotCapacity
Response schema for the getRangeSlotCapacity operation.
Trait Implementations
sourceimpl Clone for RangeSlotCapacity
impl Clone for RangeSlotCapacity
sourcefn clone(&self) -> RangeSlotCapacity
fn clone(&self) -> RangeSlotCapacity
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RangeSlotCapacity
impl Debug for RangeSlotCapacity
sourceimpl Default for RangeSlotCapacity
impl Default for RangeSlotCapacity
sourcefn default() -> RangeSlotCapacity
fn default() -> RangeSlotCapacity
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for RangeSlotCapacity
impl<'de> Deserialize<'de> for RangeSlotCapacity
sourcefn 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
sourceimpl PartialEq<RangeSlotCapacity> for RangeSlotCapacity
impl PartialEq<RangeSlotCapacity> for RangeSlotCapacity
sourcefn eq(&self, other: &RangeSlotCapacity) -> bool
fn eq(&self, other: &RangeSlotCapacity) -> bool
sourceimpl Serialize for RangeSlotCapacity
impl Serialize for RangeSlotCapacity
impl StructuralPartialEq for RangeSlotCapacity
Auto Trait Implementations
impl RefUnwindSafe for RangeSlotCapacity
impl Send for RangeSlotCapacity
impl Sync for RangeSlotCapacity
impl Unpin for RangeSlotCapacity
impl UnwindSafe for RangeSlotCapacity
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more