pub struct AggregatorFeaturesMessage {
pub open_api_version: Vec<u8>,
pub documentation_url: Vec<u8>,
pub capabilities: Box<AggregatorFeaturesMessageCapabilities>,
}Expand description
AggregatorFeaturesMessage : Represents general information about Aggregator public information and signing capabilities
Fields§
§open_api_version: Vec<u8>Open API version
documentation_url: Vec<u8>Mithril documentation
capabilities: Box<AggregatorFeaturesMessageCapabilities>Implementations§
Source§impl AggregatorFeaturesMessage
impl AggregatorFeaturesMessage
Sourcepub fn new(
open_api_version: Vec<u8>,
documentation_url: Vec<u8>,
capabilities: AggregatorFeaturesMessageCapabilities,
) -> AggregatorFeaturesMessage
pub fn new( open_api_version: Vec<u8>, documentation_url: Vec<u8>, capabilities: AggregatorFeaturesMessageCapabilities, ) -> AggregatorFeaturesMessage
Represents general information about Aggregator public information and signing capabilities
Trait Implementations§
Source§impl Clone for AggregatorFeaturesMessage
impl Clone for AggregatorFeaturesMessage
Source§fn clone(&self) -> AggregatorFeaturesMessage
fn clone(&self) -> AggregatorFeaturesMessage
Returns a copy 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 AggregatorFeaturesMessage
impl Debug for AggregatorFeaturesMessage
Source§impl Default for AggregatorFeaturesMessage
impl Default for AggregatorFeaturesMessage
Source§fn default() -> AggregatorFeaturesMessage
fn default() -> AggregatorFeaturesMessage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AggregatorFeaturesMessage
impl<'de> Deserialize<'de> for AggregatorFeaturesMessage
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 AggregatorFeaturesMessage
Auto Trait Implementations§
impl Freeze for AggregatorFeaturesMessage
impl RefUnwindSafe for AggregatorFeaturesMessage
impl Send for AggregatorFeaturesMessage
impl Sync for AggregatorFeaturesMessage
impl Unpin for AggregatorFeaturesMessage
impl UnwindSafe for AggregatorFeaturesMessage
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