pub struct ProtocolType {
pub name: String,
pub financial_type: FinancialType,
pub attribute_schema: Option<Value>,
pub implementation: ImplementationType,
}Fields§
§name: String§financial_type: FinancialType§attribute_schema: Option<Value>§implementation: ImplementationTypeImplementations§
Source§impl ProtocolType
impl ProtocolType
pub fn new( name: String, financial_type: FinancialType, attribute_schema: Option<Value>, implementation: ImplementationType, ) -> Self
Trait Implementations§
Source§impl Clone for ProtocolType
impl Clone for ProtocolType
Source§fn clone(&self) -> ProtocolType
fn clone(&self) -> ProtocolType
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 ProtocolType
impl Debug for ProtocolType
Source§impl Default for ProtocolType
impl Default for ProtocolType
Source§fn default() -> ProtocolType
fn default() -> ProtocolType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProtocolType
impl<'de> Deserialize<'de> for ProtocolType
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 ProtocolType
impl PartialEq for ProtocolType
Source§impl Serialize for ProtocolType
impl Serialize for ProtocolType
impl StructuralPartialEq for ProtocolType
Auto Trait Implementations§
impl Freeze for ProtocolType
impl RefUnwindSafe for ProtocolType
impl Send for ProtocolType
impl Sync for ProtocolType
impl Unpin for ProtocolType
impl UnwindSafe for ProtocolType
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