pub struct NodeIntervalBlock {
pub block_id: i64,
pub node_id: HashId,
pub start: i64,
pub end: i64,
pub sequence_start: i64,
pub sequence_end: i64,
pub strand: Strand,
}Fields§
§block_id: i64§node_id: HashId§start: i64§end: i64§sequence_start: i64§sequence_end: i64§strand: StrandTrait Implementations§
Source§impl Clone for NodeIntervalBlock
impl Clone for NodeIntervalBlock
Source§fn clone(&self) -> NodeIntervalBlock
fn clone(&self) -> NodeIntervalBlock
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 NodeIntervalBlock
impl Debug for NodeIntervalBlock
Source§impl Hash for NodeIntervalBlock
impl Hash for NodeIntervalBlock
Source§impl Ord for NodeIntervalBlock
impl Ord for NodeIntervalBlock
Source§fn cmp(&self, other: &NodeIntervalBlock) -> Ordering
fn cmp(&self, other: &NodeIntervalBlock) -> Ordering
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 PartialEq for NodeIntervalBlock
impl PartialEq for NodeIntervalBlock
Source§impl PartialOrd for NodeIntervalBlock
impl PartialOrd for NodeIntervalBlock
impl Copy for NodeIntervalBlock
impl Eq for NodeIntervalBlock
impl StructuralPartialEq for NodeIntervalBlock
Auto Trait Implementations§
impl Freeze for NodeIntervalBlock
impl RefUnwindSafe for NodeIntervalBlock
impl Send for NodeIntervalBlock
impl Sync for NodeIntervalBlock
impl Unpin for NodeIntervalBlock
impl UnsafeUnpin for NodeIntervalBlock
impl UnwindSafe for NodeIntervalBlock
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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