pub struct GetBillableSeats200Response {
pub developers: Option<i32>,
pub operators: Option<i32>,
pub seats: i32,
}Fields§
§developers: Option<i32>Omitted when the seats counted are another workspace’s, as they are for a fork resolving to its billing root.
operators: Option<i32>Omitted when the seats counted are another workspace’s, as they are for a fork resolving to its billing root.
seats: i32Implementations§
Source§impl GetBillableSeats200Response
impl GetBillableSeats200Response
pub fn new(seats: i32) -> GetBillableSeats200Response
Trait Implementations§
Source§impl Clone for GetBillableSeats200Response
impl Clone for GetBillableSeats200Response
Source§fn clone(&self) -> GetBillableSeats200Response
fn clone(&self) -> GetBillableSeats200Response
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetBillableSeats200Response
impl Debug for GetBillableSeats200Response
Source§impl Default for GetBillableSeats200Response
impl Default for GetBillableSeats200Response
Source§fn default() -> GetBillableSeats200Response
fn default() -> GetBillableSeats200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetBillableSeats200Response
impl<'de> Deserialize<'de> for GetBillableSeats200Response
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
impl StructuralPartialEq for GetBillableSeats200Response
Auto Trait Implementations§
impl Freeze for GetBillableSeats200Response
impl RefUnwindSafe for GetBillableSeats200Response
impl Send for GetBillableSeats200Response
impl Sync for GetBillableSeats200Response
impl Unpin for GetBillableSeats200Response
impl UnsafeUnpin for GetBillableSeats200Response
impl UnwindSafe for GetBillableSeats200Response
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