pub struct AssetBookmark {
pub resource_id: Option<u32>,
pub asset_type: AssetType,
pub name: Option<String>,
pub node_start: usize,
pub node_end: usize,
pub node_next: usize,
pub size: u32,
}Expand description
An wrapper struct pointing to a specific asset in a database file
Fields§
§resource_id: Option<u32>§asset_type: AssetType§name: Option<String>§node_start: usize§node_end: usize§node_next: usize§size: u32Trait Implementations§
Source§impl Clone for AssetBookmark
impl Clone for AssetBookmark
Source§fn clone(&self) -> AssetBookmark
fn clone(&self) -> AssetBookmark
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 AssetBookmark
impl RefUnwindSafe for AssetBookmark
impl Send for AssetBookmark
impl Sync for AssetBookmark
impl Unpin for AssetBookmark
impl UnwindSafe for AssetBookmark
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