pub struct Rrc {
pub id: i64,
pub name: String,
pub geographical_location: String,
pub topological_location: String,
pub multihop: bool,
pub activated_on: String,
pub deactivated_on: String,
pub peers: Vec<RrcInfoPeer>,
}Fields§
§id: i64§name: String§geographical_location: String§topological_location: String§multihop: bool§activated_on: String§deactivated_on: String§peers: Vec<RrcInfoPeer>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Rrc
impl<'de> Deserialize<'de> for Rrc
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
impl StructuralPartialEq for Rrc
Auto Trait Implementations§
impl Freeze for Rrc
impl RefUnwindSafe for Rrc
impl Send for Rrc
impl Sync for Rrc
impl Unpin for Rrc
impl UnsafeUnpin for Rrc
impl UnwindSafe for Rrc
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