pub struct RunReportLimitations {
pub items: Vec<String>,
}Expand description
Limitations attached to a run report.
Fields§
§items: Vec<String>Bounded limitations safe for logs and report views.
Implementations§
Source§impl RunReportLimitations
impl RunReportLimitations
Sourcepub fn from_parts(usage: &UsageReport, cost: Option<&CostReport>) -> Self
pub fn from_parts(usage: &UsageReport, cost: Option<&CostReport>) -> Self
Creates limitations from report parts.
Trait Implementations§
Source§impl Clone for RunReportLimitations
impl Clone for RunReportLimitations
Source§fn clone(&self) -> RunReportLimitations
fn clone(&self) -> RunReportLimitations
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 RunReportLimitations
impl Debug for RunReportLimitations
Source§impl Default for RunReportLimitations
impl Default for RunReportLimitations
Source§fn default() -> RunReportLimitations
fn default() -> RunReportLimitations
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunReportLimitations
impl<'de> Deserialize<'de> for RunReportLimitations
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 Eq for RunReportLimitations
Source§impl PartialEq for RunReportLimitations
impl PartialEq for RunReportLimitations
Source§fn eq(&self, other: &RunReportLimitations) -> bool
fn eq(&self, other: &RunReportLimitations) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RunReportLimitations
impl Serialize for RunReportLimitations
impl StructuralPartialEq for RunReportLimitations
Auto Trait Implementations§
impl Freeze for RunReportLimitations
impl RefUnwindSafe for RunReportLimitations
impl Send for RunReportLimitations
impl Sync for RunReportLimitations
impl Unpin for RunReportLimitations
impl UnsafeUnpin for RunReportLimitations
impl UnwindSafe for RunReportLimitations
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