#[repr(packed(1))]pub struct AppStartupOutput {
pub success: bool,
}Fields§
§success: boolTrait Implementations§
Source§impl Clone for AppStartupOutput
impl Clone for AppStartupOutput
Source§fn clone(&self) -> AppStartupOutput
fn clone(&self) -> AppStartupOutput
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 AppStartupOutput
impl Debug for AppStartupOutput
Source§impl FixedSized for AppStartupOutput
impl FixedSized for AppStartupOutput
const SERIALIZED_SIZE: usize = _
Source§impl PartialEq for AppStartupOutput
impl PartialEq for AppStartupOutput
Source§impl<'raw> Record<'raw> for AppStartupOutput
impl<'raw> Record<'raw> for AppStartupOutput
Source§impl<'raw> SubRecord<'raw> for AppStartupOutput
impl<'raw> SubRecord<'raw> for AppStartupOutput
const MIN_SERIALIZED_SIZE: usize = Self::SERIALIZED_SIZE
const EXACT_SERIALIZED_SIZE: Option<usize>
Source§fn serialized_size(&self) -> usize
fn serialized_size(&self) -> usize
Exact size this will be once serialized in bytes. Read more
Source§fn _serialize_chained<W: Write>(&self, dest: &mut W) -> SeResult<usize>
fn _serialize_chained<W: Write>(&self, dest: &mut W) -> SeResult<usize>
Should only be called from generated code!
Serialize this record. It is highly recommend to use a buffered writer.
impl Copy for AppStartupOutput
impl StructuralPartialEq for AppStartupOutput
Auto Trait Implementations§
impl Freeze for AppStartupOutput
impl RefUnwindSafe for AppStartupOutput
impl Send for AppStartupOutput
impl Sync for AppStartupOutput
impl Unpin for AppStartupOutput
impl UnsafeUnpin for AppStartupOutput
impl UnwindSafe for AppStartupOutput
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