Struct linkspace::conventions::status::LkStatus
source · #[repr(C)]pub struct LkStatus<'o> {
pub domain: Domain,
pub group: GroupID,
pub objtype: &'o [u8],
pub instance: Option<&'o [u8]>,
pub qid: &'o [u8],
}
Expand description
Options for a local status request.
Fields§
§domain: Domain
the domain of interests
group: GroupID
the group of interests (NOT the group to query, see mod level doc on the usage)
objtype: &'o [u8]
the object type of interests
instance: Option<&'o [u8]>
the instance
qid: &'o [u8]
qid to use for query - reuse of qid will remove the listening query
Trait Implementations§
impl<'o> Copy for LkStatus<'o>
Auto Trait Implementations§
impl<'o> RefUnwindSafe for LkStatus<'o>
impl<'o> Send for LkStatus<'o>
impl<'o> Sync for LkStatus<'o>
impl<'o> Unpin for LkStatus<'o>
impl<'o> UnwindSafe for LkStatus<'o>
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