pub enum OCGStateChange {
On(Vec<String>),
Off(Vec<String>),
Toggle(Vec<String>),
}Expand description
OCG state change specification
Variants§
Trait Implementations§
Source§impl Clone for OCGStateChange
impl Clone for OCGStateChange
Source§fn clone(&self) -> OCGStateChange
fn clone(&self) -> OCGStateChange
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 moreAuto Trait Implementations§
impl Freeze for OCGStateChange
impl RefUnwindSafe for OCGStateChange
impl Send for OCGStateChange
impl Sync for OCGStateChange
impl Unpin for OCGStateChange
impl UnsafeUnpin for OCGStateChange
impl UnwindSafe for OCGStateChange
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