pub struct RoleOverviewResponse {
pub role: CanisterRole,
pub capabilities: Vec<RoleCapability>,
pub protocol_profile_digest: [u8; 32],
pub metadata: CanicMetadataResponse,
pub bootstrap: BootstrapStatusResponse,
}Expand description
Immutable role, capability, release, and bootstrap profile-verification response.
Fields§
§role: CanisterRole§capabilities: Vec<RoleCapability>§protocol_profile_digest: [u8; 32]§metadata: CanicMetadataResponse§bootstrap: BootstrapStatusResponseTrait Implementations§
Source§impl CandidType for RoleOverviewResponse
impl CandidType for RoleOverviewResponse
Source§impl Clone for RoleOverviewResponse
impl Clone for RoleOverviewResponse
Source§fn clone(&self) -> RoleOverviewResponse
fn clone(&self) -> RoleOverviewResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RoleOverviewResponse
impl Debug for RoleOverviewResponse
Source§impl<'de> Deserialize<'de> for RoleOverviewResponse
impl<'de> Deserialize<'de> for RoleOverviewResponse
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 RoleOverviewResponse
impl RefUnwindSafe for RoleOverviewResponse
impl Send for RoleOverviewResponse
impl Sync for RoleOverviewResponse
impl Unpin for RoleOverviewResponse
impl UnsafeUnpin for RoleOverviewResponse
impl UnwindSafe for RoleOverviewResponse
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