pub enum ScriptState {
Parsed,
Loading,
Error,
BlockedCsp,
BlockedPolicy,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ScriptState
impl Clone for ScriptState
Source§fn clone(&self) -> ScriptState
fn clone(&self) -> ScriptState
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 moreSource§impl Debug for ScriptState
impl Debug for ScriptState
Source§impl PartialEq for ScriptState
impl PartialEq for ScriptState
Source§fn eq(&self, other: &ScriptState) -> bool
fn eq(&self, other: &ScriptState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ScriptState
impl Eq for ScriptState
impl StructuralPartialEq for ScriptState
Auto Trait Implementations§
impl Freeze for ScriptState
impl RefUnwindSafe for ScriptState
impl Send for ScriptState
impl Sync for ScriptState
impl Unpin for ScriptState
impl UnsafeUnpin for ScriptState
impl UnwindSafe for ScriptState
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