pub struct ActionsBillingUsage {
pub total_minutes_used: i32,
pub total_paid_minutes_used: i32,
pub included_minutes: i32,
pub minutes_used_breakdown: Box<ActionsBillingUsageMinutesUsedBreakdown>,
}
Fields§
§total_minutes_used: i32
The sum of the free and paid GitHub Actions minutes used.
total_paid_minutes_used: i32
The total paid GitHub Actions minutes used.
included_minutes: i32
The amount of free GitHub Actions minutes available.
minutes_used_breakdown: Box<ActionsBillingUsageMinutesUsedBreakdown>
Implementations§
Source§impl ActionsBillingUsage
impl ActionsBillingUsage
pub fn new( total_minutes_used: i32, total_paid_minutes_used: i32, included_minutes: i32, minutes_used_breakdown: ActionsBillingUsageMinutesUsedBreakdown, ) -> ActionsBillingUsage
Trait Implementations§
Source§impl Clone for ActionsBillingUsage
impl Clone for ActionsBillingUsage
Source§fn clone(&self) -> ActionsBillingUsage
fn clone(&self) -> ActionsBillingUsage
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 ActionsBillingUsage
impl Debug for ActionsBillingUsage
Source§impl Default for ActionsBillingUsage
impl Default for ActionsBillingUsage
Source§fn default() -> ActionsBillingUsage
fn default() -> ActionsBillingUsage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionsBillingUsage
impl<'de> Deserialize<'de> for ActionsBillingUsage
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 ActionsBillingUsage
impl PartialEq for ActionsBillingUsage
Source§impl Serialize for ActionsBillingUsage
impl Serialize for ActionsBillingUsage
impl StructuralPartialEq for ActionsBillingUsage
Auto Trait Implementations§
impl Freeze for ActionsBillingUsage
impl RefUnwindSafe for ActionsBillingUsage
impl Send for ActionsBillingUsage
impl Sync for ActionsBillingUsage
impl Unpin for ActionsBillingUsage
impl UnwindSafe for ActionsBillingUsage
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