pub struct LicenseForecast {
pub internal_users: i32,
pub external_users: i32,
pub forecasted_internal_users: i32,
pub forecasted_external_users: i32,
}
Expand description
LicenseForecast : Serializer for license forecast
Fields§
§internal_users: i32
§external_users: i32
§forecasted_internal_users: i32
§forecasted_external_users: i32
Implementations§
Trait Implementations§
Source§impl Clone for LicenseForecast
impl Clone for LicenseForecast
Source§fn clone(&self) -> LicenseForecast
fn clone(&self) -> LicenseForecast
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 LicenseForecast
impl Debug for LicenseForecast
Source§impl Default for LicenseForecast
impl Default for LicenseForecast
Source§fn default() -> LicenseForecast
fn default() -> LicenseForecast
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LicenseForecast
impl<'de> Deserialize<'de> for LicenseForecast
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 LicenseForecast
impl PartialEq for LicenseForecast
Source§impl Serialize for LicenseForecast
impl Serialize for LicenseForecast
impl StructuralPartialEq for LicenseForecast
Auto Trait Implementations§
impl Freeze for LicenseForecast
impl RefUnwindSafe for LicenseForecast
impl Send for LicenseForecast
impl Sync for LicenseForecast
impl Unpin for LicenseForecast
impl UnwindSafe for LicenseForecast
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