pub struct EdgeCountEvent {
pub count: u32,
pub value: bool,
}
Fields§
§count: u32
§value: bool
Trait Implementations§
Source§impl Clone for EdgeCountEvent
impl Clone for EdgeCountEvent
Source§fn clone(&self) -> EdgeCountEvent
fn clone(&self) -> EdgeCountEvent
Returns a copy 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 EdgeCountEvent
impl Debug for EdgeCountEvent
Source§impl Default for EdgeCountEvent
impl Default for EdgeCountEvent
Source§fn default() -> EdgeCountEvent
fn default() -> EdgeCountEvent
Returns the “default value” for a type. Read more
Source§impl FromByteSlice for EdgeCountEvent
impl FromByteSlice for EdgeCountEvent
Source§fn bytes_expected() -> usize
fn bytes_expected() -> usize
Returns how many bytes are expected to deserialize a instance of the implementing type. Currently this method is only used for strings.
Source§fn from_le_byte_slice(bytes: &[u8]) -> EdgeCountEvent
fn from_le_byte_slice(bytes: &[u8]) -> EdgeCountEvent
Deserialize the implementing type from a byte slice.
Source§impl Hash for EdgeCountEvent
impl Hash for EdgeCountEvent
Source§impl PartialEq for EdgeCountEvent
impl PartialEq for EdgeCountEvent
impl Copy for EdgeCountEvent
impl Eq for EdgeCountEvent
impl StructuralPartialEq for EdgeCountEvent
Auto Trait Implementations§
impl Freeze for EdgeCountEvent
impl RefUnwindSafe for EdgeCountEvent
impl Send for EdgeCountEvent
impl Sync for EdgeCountEvent
impl Unpin for EdgeCountEvent
impl UnwindSafe for EdgeCountEvent
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