pub struct ObjectLocation {
pub group: u64,
pub object: u64,
}Expand description
The Group and Object an object names.
Not moqtap_codec::types::Location, which carries the same pair as a
pair of VarInts because it is a field on the wire. This one is compared
and maximised rather than encoded, so it holds the numbers themselves.
Fields§
§group: u64Group ID.
object: u64Object ID.
Trait Implementations§
Source§impl Clone for ObjectLocation
impl Clone for ObjectLocation
Source§fn clone(&self) -> ObjectLocation
fn clone(&self) -> ObjectLocation
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 moreimpl Copy for ObjectLocation
Source§impl Debug for ObjectLocation
impl Debug for ObjectLocation
impl Eq for ObjectLocation
Source§impl PartialEq for ObjectLocation
impl PartialEq for ObjectLocation
impl StructuralPartialEq for ObjectLocation
Auto Trait Implementations§
impl Freeze for ObjectLocation
impl RefUnwindSafe for ObjectLocation
impl Send for ObjectLocation
impl Sync for ObjectLocation
impl Unpin for ObjectLocation
impl UnsafeUnpin for ObjectLocation
impl UnwindSafe for ObjectLocation
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