pub struct SidecarContainerValidation {
pub ok: bool,
pub version: u8,
pub flags: u8,
pub item_count: usize,
pub total_length: usize,
pub items: Vec<SidecarItemValidation>,
}Fields§
§ok: bool§version: u8§flags: u8§item_count: usize§total_length: usize§items: Vec<SidecarItemValidation>Trait Implementations§
Source§impl Clone for SidecarContainerValidation
impl Clone for SidecarContainerValidation
Source§fn clone(&self) -> SidecarContainerValidation
fn clone(&self) -> SidecarContainerValidation
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 SidecarContainerValidation
impl Debug for SidecarContainerValidation
Auto Trait Implementations§
impl Freeze for SidecarContainerValidation
impl RefUnwindSafe for SidecarContainerValidation
impl Send for SidecarContainerValidation
impl Sync for SidecarContainerValidation
impl Unpin for SidecarContainerValidation
impl UnsafeUnpin for SidecarContainerValidation
impl UnwindSafe for SidecarContainerValidation
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