pub struct Web3TrustProfile {
pub schema: String,
pub profile_id: String,
pub chio_contract_version: String,
pub primary_chain_id: String,
pub secondary_chain_ids: Vec<String>,
pub operator_binding: SignedWeb3IdentityBinding,
pub proof_bundle_required: bool,
pub dispute_windows: Vec<Web3DisputeWindow>,
pub finality_rules: Vec<Web3ChainFinalityRule>,
pub regulated_roles: Vec<Web3RegulatedRoleAssumption>,
pub custody_boundary_note: String,
pub local_policy_activation_required: bool,
}Fields§
§schema: String§profile_id: String§chio_contract_version: String§primary_chain_id: String§secondary_chain_ids: Vec<String>§operator_binding: SignedWeb3IdentityBinding§proof_bundle_required: bool§dispute_windows: Vec<Web3DisputeWindow>§finality_rules: Vec<Web3ChainFinalityRule>§regulated_roles: Vec<Web3RegulatedRoleAssumption>§custody_boundary_note: String§local_policy_activation_required: boolTrait Implementations§
Source§impl Clone for Web3TrustProfile
impl Clone for Web3TrustProfile
Source§fn clone(&self) -> Web3TrustProfile
fn clone(&self) -> Web3TrustProfile
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 Web3TrustProfile
impl Debug for Web3TrustProfile
Source§impl<'de> Deserialize<'de> for Web3TrustProfile
impl<'de> Deserialize<'de> for Web3TrustProfile
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Web3TrustProfile, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Web3TrustProfile, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for Web3TrustProfile
impl Serialize for Web3TrustProfile
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for Web3TrustProfile
impl RefUnwindSafe for Web3TrustProfile
impl Send for Web3TrustProfile
impl Sync for Web3TrustProfile
impl Unpin for Web3TrustProfile
impl UnsafeUnpin for Web3TrustProfile
impl UnwindSafe for Web3TrustProfile
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