pub struct OssLocalSummaryResponse {
pub mode: Mode,
pub connected: bool,
pub generated_at: String,
pub runtime: Box<OssLocalRuntimeStatus>,
pub paths: Box<OssLocalPathsView>,
pub latest_report: Option<Box<OssLocalReportMeta>>,
pub stats: Box<OssLocalStats>,
}Fields§
§mode: Mode§connected: bool§generated_at: String§runtime: Box<OssLocalRuntimeStatus>§paths: Box<OssLocalPathsView>§latest_report: Option<Box<OssLocalReportMeta>>§stats: Box<OssLocalStats>Implementations§
Source§impl OssLocalSummaryResponse
impl OssLocalSummaryResponse
pub fn new( mode: Mode, connected: bool, generated_at: String, runtime: OssLocalRuntimeStatus, paths: OssLocalPathsView, stats: OssLocalStats, ) -> OssLocalSummaryResponse
Trait Implementations§
Source§impl Clone for OssLocalSummaryResponse
impl Clone for OssLocalSummaryResponse
Source§fn clone(&self) -> OssLocalSummaryResponse
fn clone(&self) -> OssLocalSummaryResponse
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 OssLocalSummaryResponse
impl Debug for OssLocalSummaryResponse
Source§impl Default for OssLocalSummaryResponse
impl Default for OssLocalSummaryResponse
Source§fn default() -> OssLocalSummaryResponse
fn default() -> OssLocalSummaryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OssLocalSummaryResponse
impl<'de> Deserialize<'de> for OssLocalSummaryResponse
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 OssLocalSummaryResponse
impl PartialEq for OssLocalSummaryResponse
Source§impl Serialize for OssLocalSummaryResponse
impl Serialize for OssLocalSummaryResponse
impl StructuralPartialEq for OssLocalSummaryResponse
Auto Trait Implementations§
impl Freeze for OssLocalSummaryResponse
impl RefUnwindSafe for OssLocalSummaryResponse
impl Send for OssLocalSummaryResponse
impl Sync for OssLocalSummaryResponse
impl Unpin for OssLocalSummaryResponse
impl UnsafeUnpin for OssLocalSummaryResponse
impl UnwindSafe for OssLocalSummaryResponse
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