pub struct Oui {
pub oui: u64,
pub owner: String,
pub nonce: u64,
pub addresses: Vec<String>,
pub subnets: Vec<Subnet>,
}
Expand description
Represents an OUI on the blockchain
Fields§
§oui: u64
The oui value.
owner: String
The base58 public key of the owner of the oui.
nonce: u64
The current nonce for the oui
addresses: Vec<String>
The base58 encoded public keys of the routers for this oui
subnets: Vec<Subnet>
The subnets for this oui
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Oui
impl<'de> Deserialize<'de> for Oui
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
Auto Trait Implementations§
impl Freeze for Oui
impl RefUnwindSafe for Oui
impl Send for Oui
impl Sync for Oui
impl Unpin for Oui
impl UnwindSafe for Oui
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