pub struct Info<'a> {
pub author: &'a str,
pub version: usize,
}Expand description
Metadata structure that is used in several places in an asset catalog.
Fields§
Contains the author of the corresponding data structure. This is usually Xcode.
version: usizeContains the version of the corresponding data structure. This is usually 1.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Info<'a>
impl<'a> RefUnwindSafe for Info<'a>
impl<'a> Send for Info<'a>
impl<'a> Sync for Info<'a>
impl<'a> Unpin for Info<'a>
impl<'a> UnwindSafe for Info<'a>
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