#[repr(i64)]pub enum NLTaggerAssetsResult {
Available = 0,
NotAvailable = 1,
Error = 2,
}Expand description
The response to an asset request.
Variants§
Available = 0
The asset is now available and loaded onto the device.
NotAvailable = 1
The asset is unavailable on the device.
Error = 2
The framework couldn’t load the asset due to an error.
Trait Implementations§
Source§impl Debug for NLTaggerAssetsResult
impl Debug for NLTaggerAssetsResult
Source§impl PartialEq for NLTaggerAssetsResult
impl PartialEq for NLTaggerAssetsResult
impl Eq for NLTaggerAssetsResult
impl StructuralPartialEq for NLTaggerAssetsResult
Auto Trait Implementations§
impl Freeze for NLTaggerAssetsResult
impl RefUnwindSafe for NLTaggerAssetsResult
impl Send for NLTaggerAssetsResult
impl Sync for NLTaggerAssetsResult
impl Unpin for NLTaggerAssetsResult
impl UnwindSafe for NLTaggerAssetsResult
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