pub struct MultiaddressSource {
pub multiaddress: String,
pub origin: AnnouncementOriginResponse,
}Expand description
A multiaddress paired with its discovery origin.
JSON schema
{
"description": "A multiaddress paired with its discovery origin.",
"examples": [
{
"multiaddress": "/ip4/10.0.2.100/tcp/19093",
"origin": "chain"
}
],
"type": "object",
"required": [
"multiaddress",
"origin"
],
"properties": {
"multiaddress": {
"examples": [
"/ip4/10.0.2.100/tcp/19093"
],
"type": "string"
},
"origin": {
"$ref": "#/components/schemas/AnnouncementOriginResponse"
}
}
}Fields§
§multiaddress: String§origin: AnnouncementOriginResponseTrait Implementations§
Source§impl Clone for MultiaddressSource
impl Clone for MultiaddressSource
Source§fn clone(&self) -> MultiaddressSource
fn clone(&self) -> MultiaddressSource
Returns a duplicate 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 MultiaddressSource
impl Debug for MultiaddressSource
Source§impl<'de> Deserialize<'de> for MultiaddressSource
impl<'de> Deserialize<'de> for MultiaddressSource
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 MultiaddressSource
impl RefUnwindSafe for MultiaddressSource
impl Send for MultiaddressSource
impl Sync for MultiaddressSource
impl Unpin for MultiaddressSource
impl UnwindSafe for MultiaddressSource
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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