Struct webrender_api::DocumentId
source · #[repr(C)]pub struct DocumentId {
pub namespace_id: IdNamespace,
pub id: u32,
}
Expand description
A key uniquely identifying a WebRender document.
Instances can manage one or several documents (using the same render backend thread). Each document will internally correspond to a single scene, and scenes are made of one or several pipelines.
Fields§
§namespace_id: IdNamespace
§id: u32
Implementations§
source§impl DocumentId
impl DocumentId
sourcepub fn new(namespace_id: IdNamespace, id: u32) -> Self
pub fn new(namespace_id: IdNamespace, id: u32) -> Self
sourcepub const INVALID: DocumentId = _
pub const INVALID: DocumentId = _
Trait Implementations§
source§impl Clone for DocumentId
impl Clone for DocumentId
source§fn clone(&self) -> DocumentId
fn clone(&self) -> DocumentId
Returns a copy 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 DocumentId
impl Debug for DocumentId
source§impl<'de> Deserialize<'de> for DocumentId
impl<'de> Deserialize<'de> for DocumentId
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 Hash for DocumentId
impl Hash for DocumentId
source§impl MallocSizeOf for DocumentId
impl MallocSizeOf for DocumentId
source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
source§impl PartialEq for DocumentId
impl PartialEq for DocumentId
source§fn eq(&self, other: &DocumentId) -> bool
fn eq(&self, other: &DocumentId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Peek for DocumentId
impl Peek for DocumentId
source§impl Poke for DocumentId
impl Poke for DocumentId
source§impl Serialize for DocumentId
impl Serialize for DocumentId
impl Copy for DocumentId
impl Eq for DocumentId
impl StructuralPartialEq for DocumentId
Auto Trait Implementations§
impl Freeze for DocumentId
impl RefUnwindSafe for DocumentId
impl Send for DocumentId
impl Sync for DocumentId
impl Unpin for DocumentId
impl UnwindSafe for DocumentId
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