pub struct Bed6<'a, T = f64> {
pub strand: Strand,
/* private fields */
}
Fields§
§strand: Strand
Implementations§
Methods from Deref<Target = Bed4<'a>>§
pub fn set_name(&mut self, name: &'a str)
pub fn get_self_contained_name(&self) -> RcCowString<'static>
Trait Implementations§
Source§impl<'a, T: Ord> Ord for Bed6<'a, T>
impl<'a, T: Ord> Ord for Bed6<'a, T>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a, T: PartialOrd> PartialOrd for Bed6<'a, T>
impl<'a, T: PartialOrd> PartialOrd for Bed6<'a, T>
Source§impl<'a, S> RegionCore for Bed6<'a, S>
impl<'a, S> RegionCore for Bed6<'a, S>
Source§impl<'a, T: Display> Serializable for Bed6<'a, T>
impl<'a, T: Display> Serializable for Bed6<'a, T>
Source§impl<'a> ToSelfContained for Bed6<'a>
impl<'a> ToSelfContained for Bed6<'a>
type SelfContained = Bed6<'static>
fn to_self_contained(&self) -> Self::SelfContained
impl<'a, T: Eq> Eq for Bed6<'a, T>
impl<'a, T> StructuralPartialEq for Bed6<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for Bed6<'a, T>where
T: Freeze,
impl<'a, T> RefUnwindSafe for Bed6<'a, T>where
T: RefUnwindSafe,
impl<'a, T = f64> !Send for Bed6<'a, T>
impl<'a, T = f64> !Sync for Bed6<'a, T>
impl<'a, T> Unpin for Bed6<'a, T>where
T: Unpin,
impl<'a, T> UnwindSafe for Bed6<'a, T>where
T: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more