pub struct Sync<N: Network> { /* private fields */ }Implementations§
Source§impl<N: Network> Sync<N>
impl<N: Network> Sync<N>
Source§impl<N: Network> Sync<N>
impl<N: Network> Sync<N>
Sourcepub fn num_blocks_behind(&self) -> u32
pub fn num_blocks_behind(&self) -> u32
Returns the number of blocks the node is behind the greatest peer height.
Sourcepub const fn is_gateway_mode(&self) -> bool
pub const fn is_gateway_mode(&self) -> bool
Returns true if the node is in gateway mode.
Sourcepub fn get_block_locators(&self) -> Result<BlockLocators<N>>
pub fn get_block_locators(&self) -> Result<BlockLocators<N>>
Returns the current block locators of the node.
Trait Implementations§
Auto Trait Implementations§
impl<N> Freeze for Sync<N>
impl<N> !RefUnwindSafe for Sync<N>
impl<N> Send for Sync<N>
impl<N> Sync for Sync<N>
impl<N> Unpin for Sync<N>
impl<N> !UnwindSafe for Sync<N>
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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