pub struct ResTableStagedAliasEntry {
pub staged_res_id: u32,
pub finalized_res_id: u32,
}Expand description
Maps the staged (non-finalized) resource id to its finalized resource id.
Fields§
§staged_res_id: u32The compile-time staged resource id to rewrite.
finalized_res_id: u32The compile-time finalized resource id to which the staged resource id should be rewritten.
Trait Implementations§
Source§impl Clone for ResTableStagedAliasEntry
impl Clone for ResTableStagedAliasEntry
Source§fn clone(&self) -> ResTableStagedAliasEntry
fn clone(&self) -> ResTableStagedAliasEntry
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 ResTableStagedAliasEntry
Source§impl Debug for ResTableStagedAliasEntry
impl Debug for ResTableStagedAliasEntry
Source§impl PartialEq for ResTableStagedAliasEntry
impl PartialEq for ResTableStagedAliasEntry
Source§impl Readable for ResTableStagedAliasEntry
impl Readable for ResTableStagedAliasEntry
impl StructuralPartialEq for ResTableStagedAliasEntry
Auto Trait Implementations§
impl Freeze for ResTableStagedAliasEntry
impl RefUnwindSafe for ResTableStagedAliasEntry
impl Send for ResTableStagedAliasEntry
impl Sync for ResTableStagedAliasEntry
impl Unpin for ResTableStagedAliasEntry
impl UnsafeUnpin for ResTableStagedAliasEntry
impl UnwindSafe for ResTableStagedAliasEntry
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