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§
Source§impl RangeSlotCapacity
impl RangeSlotCapacity
Sourcepub fn new() -> RangeSlotCapacity
pub fn new() -> RangeSlotCapacity
Response schema for the getRangeSlotCapacity operation.
Trait Implementations§
Source§impl Clone for RangeSlotCapacity
impl Clone for RangeSlotCapacity
Source§fn clone(&self) -> RangeSlotCapacity
fn clone(&self) -> RangeSlotCapacity
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 RangeSlotCapacity
impl Debug for RangeSlotCapacity
Source§impl Default for RangeSlotCapacity
impl Default for RangeSlotCapacity
Source§fn default() -> RangeSlotCapacity
fn default() -> RangeSlotCapacity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RangeSlotCapacity
impl<'de> Deserialize<'de> for RangeSlotCapacity
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 RangeSlotCapacity
impl PartialEq for RangeSlotCapacity
Source§impl Serialize for RangeSlotCapacity
impl Serialize for RangeSlotCapacity
impl StructuralPartialEq for RangeSlotCapacity
Auto Trait Implementations§
impl Freeze for RangeSlotCapacity
impl RefUnwindSafe for RangeSlotCapacity
impl Send for RangeSlotCapacity
impl Sync for RangeSlotCapacity
impl Unpin for RangeSlotCapacity
impl UnwindSafe for RangeSlotCapacity
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