pub struct RouteDelta {
pub generation: u64,
pub upsert: Vec<RouteAdvertisement>,
pub withdraw: Vec<RouteWithdrawal>,
}Fields§
§generation: u64§upsert: Vec<RouteAdvertisement>§withdraw: Vec<RouteWithdrawal>Trait Implementations§
Source§impl Clone for RouteDelta
impl Clone for RouteDelta
Source§fn clone(&self) -> RouteDelta
fn clone(&self) -> RouteDelta
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RouteDelta
impl Debug for RouteDelta
Source§impl<'de> Deserialize<'de> for RouteDelta
impl<'de> Deserialize<'de> for RouteDelta
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RouteDelta
impl PartialEq for RouteDelta
Source§impl Serialize for RouteDelta
impl Serialize for RouteDelta
impl StructuralPartialEq for RouteDelta
Auto Trait Implementations§
impl Freeze for RouteDelta
impl RefUnwindSafe for RouteDelta
impl Send for RouteDelta
impl Sync for RouteDelta
impl Unpin for RouteDelta
impl UnsafeUnpin for RouteDelta
impl UnwindSafe for RouteDelta
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