pub struct GrantSubsetRelation {
pub grant_kind: String,
pub child_index: u32,
pub parent_index: u32,
pub subset: bool,
}Expand description
Per-grant subset relation recorded in an attenuation witness.
Fields§
§grant_kind: String§child_index: u32§parent_index: u32§subset: boolTrait Implementations§
Source§impl Clone for GrantSubsetRelation
impl Clone for GrantSubsetRelation
Source§fn clone(&self) -> GrantSubsetRelation
fn clone(&self) -> GrantSubsetRelation
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 GrantSubsetRelation
impl Debug for GrantSubsetRelation
Source§impl<'de> Deserialize<'de> for GrantSubsetRelation
impl<'de> Deserialize<'de> for GrantSubsetRelation
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GrantSubsetRelation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GrantSubsetRelation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for GrantSubsetRelation
Source§impl PartialEq for GrantSubsetRelation
impl PartialEq for GrantSubsetRelation
Source§impl Serialize for GrantSubsetRelation
impl Serialize for GrantSubsetRelation
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
impl StructuralPartialEq for GrantSubsetRelation
Auto Trait Implementations§
impl Freeze for GrantSubsetRelation
impl RefUnwindSafe for GrantSubsetRelation
impl Send for GrantSubsetRelation
impl Sync for GrantSubsetRelation
impl Unpin for GrantSubsetRelation
impl UnsafeUnpin for GrantSubsetRelation
impl UnwindSafe for GrantSubsetRelation
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