pub enum SecondaryPattern {
Jack(JackPattern),
Handstream(HandstreamPattern),
Jumpstream(JumpstreamPattern),
Singlestream(SinglestreamPattern),
None,
}Variants§
Jack(JackPattern)
Handstream(HandstreamPattern)
Jumpstream(JumpstreamPattern)
Singlestream(SinglestreamPattern)
None
Implementations§
Source§impl SecondaryPattern
impl SecondaryPattern
pub fn to_all(&self) -> SecondaryPattern
Trait Implementations§
Source§impl Clone for SecondaryPattern
impl Clone for SecondaryPattern
Source§fn clone(&self) -> SecondaryPattern
fn clone(&self) -> SecondaryPattern
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 moreSource§impl Debug for SecondaryPattern
impl Debug for SecondaryPattern
Source§impl Hash for SecondaryPattern
impl Hash for SecondaryPattern
Source§impl PartialEq for SecondaryPattern
impl PartialEq for SecondaryPattern
impl Eq for SecondaryPattern
impl StructuralPartialEq for SecondaryPattern
Auto Trait Implementations§
impl Freeze for SecondaryPattern
impl RefUnwindSafe for SecondaryPattern
impl Send for SecondaryPattern
impl Sync for SecondaryPattern
impl Unpin for SecondaryPattern
impl UnwindSafe for SecondaryPattern
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