pub struct Rollup {
pub balance: Option<Box<RollupBalance>>,
pub consumed_cents: Option<i32>,
pub currency: Option<String>,
pub included: Option<Box<RollupAllotment>>,
pub overage_cents: Option<i32>,
pub period: Option<String>,
pub plan: Option<String>,
pub user: Option<String>,
pub windows: Option<Vec<Window>>,
}Fields§
§balance: Option<Box<RollupBalance>>§consumed_cents: Option<i32>§currency: Option<String>§included: Option<Box<RollupAllotment>>§overage_cents: Option<i32>§period: Option<String>§plan: Option<String>§user: Option<String>§windows: Option<Vec<Window>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Rollup
impl<'de> Deserialize<'de> for Rollup
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 Rollup
Auto Trait Implementations§
impl Freeze for Rollup
impl RefUnwindSafe for Rollup
impl Send for Rollup
impl Sync for Rollup
impl Unpin for Rollup
impl UnsafeUnpin for Rollup
impl UnwindSafe for Rollup
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