#[non_exhaustive]pub enum PolymerConnection {
Unspecified,
HeadToTail,
HeadToHead,
EitherUnknown,
Other(i32),
}Expand description
The CTFile SCN connection scheme of a PolymerUnit.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unspecified
Unspecified connection.
HeadToTail
Head-to-tail (HT).
HeadToHead
Head-to-head (HH).
EitherUnknown
Either/unknown (EU).
Other(i32)
A code outside the documented set, preserved verbatim.
Trait Implementations§
Source§impl Clone for PolymerConnection
impl Clone for PolymerConnection
Source§fn clone(&self) -> PolymerConnection
fn clone(&self) -> PolymerConnection
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 moreimpl Copy for PolymerConnection
Source§impl Debug for PolymerConnection
impl Debug for PolymerConnection
Source§impl Default for PolymerConnection
impl Default for PolymerConnection
Source§fn default() -> PolymerConnection
fn default() -> PolymerConnection
Returns the “default value” for a type. Read more
impl Eq for PolymerConnection
Source§impl Hash for PolymerConnection
impl Hash for PolymerConnection
Source§impl PartialEq for PolymerConnection
impl PartialEq for PolymerConnection
Source§fn eq(&self, other: &PolymerConnection) -> bool
fn eq(&self, other: &PolymerConnection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PolymerConnection
Auto Trait Implementations§
impl Freeze for PolymerConnection
impl RefUnwindSafe for PolymerConnection
impl Send for PolymerConnection
impl Sync for PolymerConnection
impl Unpin for PolymerConnection
impl UnsafeUnpin for PolymerConnection
impl UnwindSafe for PolymerConnection
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