pub struct SocketProp {
pub name: String<{ _ }>,
pub creator: OsalId,
}Expand description
Properties of an OSAL socket.
Fields§
§name: String<{ _ }>The registered name of the socket.
creator: OsalIdThe OSAL ID of the task that created the socket.
Trait Implementations§
Source§impl Clone for SocketProp
impl Clone for SocketProp
Source§fn clone(&self) -> SocketProp
fn clone(&self) -> SocketProp
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 moreAuto Trait Implementations§
impl Freeze for SocketProp
impl RefUnwindSafe for SocketProp
impl Send for SocketProp
impl Sync for SocketProp
impl Unpin for SocketProp
impl UnsafeUnpin for SocketProp
impl UnwindSafe for SocketProp
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