pub struct IpcCarveOut {
pub name: String,
pub endpoints: Vec<String>,
pub size_kib: u32,
}Expand description
One inter-processor shared-memory carve-out.
Fields§
§name: StringCarve-out name.
endpoints: Vec<String>Endpoint identifiers attached to this carve-out.
size_kib: u32Size of the carve-out in KiB.
Trait Implementations§
Source§impl Clone for IpcCarveOut
impl Clone for IpcCarveOut
Source§fn clone(&self) -> IpcCarveOut
fn clone(&self) -> IpcCarveOut
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 IpcCarveOut
impl Debug for IpcCarveOut
Source§impl Default for IpcCarveOut
impl Default for IpcCarveOut
Source§fn default() -> IpcCarveOut
fn default() -> IpcCarveOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IpcCarveOut
impl<'de> Deserialize<'de> for IpcCarveOut
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 IpcCarveOut
impl PartialEq for IpcCarveOut
Source§fn eq(&self, other: &IpcCarveOut) -> bool
fn eq(&self, other: &IpcCarveOut) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IpcCarveOut
impl Serialize for IpcCarveOut
impl StructuralPartialEq for IpcCarveOut
Auto Trait Implementations§
impl Freeze for IpcCarveOut
impl RefUnwindSafe for IpcCarveOut
impl Send for IpcCarveOut
impl Sync for IpcCarveOut
impl Unpin for IpcCarveOut
impl UnsafeUnpin for IpcCarveOut
impl UnwindSafe for IpcCarveOut
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