pub struct NodeMap<T>(/* private fields */);
Expand description
A container keeping items indexed by NodeIndex.
Implementations§
Source§impl<T> NodeMap<T>
impl<T> NodeMap<T>
Sourcepub fn with_size(len: NodeCount) -> NodeMap<T>where
T: Clone,
pub fn with_size(len: NodeCount) -> NodeMap<T>where
T: Clone,
Constructs a new node map with a given length.
pub fn from_hashmap(
len: NodeCount,
hashmap: HashMap<NodeIndex, T>,
) -> NodeMap<T>where
T: Clone,
pub fn size(&self) -> NodeCount
pub fn iter(&self) -> impl Iterator<Item = (NodeIndex, &T)>
pub fn iter_mut(&mut self) -> impl Iterator<Item = (NodeIndex, &mut T)>
pub fn values(&self) -> impl Iterator<Item = &T>
pub fn into_values(self) -> impl Iterator<Item = T>where
T: 'static,
pub fn get(&self, node_id: NodeIndex) -> Option<&T>
pub fn get_mut(&mut self, node_id: NodeIndex) -> Option<&mut T>
pub fn insert(&mut self, node_id: NodeIndex, value: T)
pub fn to_subset(&self) -> NodeSubset
pub fn item_count(&self) -> usize
Trait Implementations§
Source§impl<T> Decode for NodeMap<T>
impl<T> Decode for NodeMap<T>
Source§fn decode<__CodecInputEdqy>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<NodeMap<T>, Error>where
__CodecInputEdqy: Input,
fn decode<__CodecInputEdqy>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<NodeMap<T>, Error>where
__CodecInputEdqy: Input,
Attempt to deserialise the value from input.
Source§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
Source§impl<T> Encode for NodeMap<T>
impl<T> Encode for NodeMap<T>
Source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
Source§fn encode_to<__CodecOutputEdqy>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy,
)
fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy, )
Convert self to a slice and append it to the destination.
Source§fn using_encoded<__CodecOutputReturn, __CodecUsingEncodedCallback>(
&self,
f: __CodecUsingEncodedCallback,
) -> __CodecOutputReturn
fn using_encoded<__CodecOutputReturn, __CodecUsingEncodedCallback>( &self, f: __CodecUsingEncodedCallback, ) -> __CodecOutputReturn
Convert self to a slice and then invoke the given closure with it.
Source§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
Source§impl<'a, T> IntoIterator for &'a NodeMap<T>
impl<'a, T> IntoIterator for &'a NodeMap<T>
Source§impl<'a, T> IntoIterator for &'a mut NodeMap<T>
impl<'a, T> IntoIterator for &'a mut NodeMap<T>
Source§impl<T> IntoIterator for NodeMap<T>where
T: 'static,
impl<T> IntoIterator for NodeMap<T>where
T: 'static,
Source§impl<S> PartialMultisignature for NodeMap<S>where
S: Signature,
impl<S> PartialMultisignature for NodeMap<S>where
S: Signature,
impl<T> EncodeLike for NodeMap<T>
impl<T> Eq for NodeMap<T>where
T: Eq,
impl<T> StructuralPartialEq for NodeMap<T>
Auto Trait Implementations§
impl<T> Freeze for NodeMap<T>
impl<T> RefUnwindSafe for NodeMap<T>where
T: RefUnwindSafe,
impl<T> Send for NodeMap<T>where
T: Send,
impl<T> Sync for NodeMap<T>where
T: Sync,
impl<T> Unpin for NodeMap<T>where
T: Unpin,
impl<T> UnwindSafe for NodeMap<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> DecodeLimit for Twhere
T: Decode,
impl<T> DecodeLimit for Twhere
T: Decode,
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