pub struct AttestationNote {
pub hint: Option<Hint>,
}
Expand description
Note kind that represents a logical attestation “role” or “authority”. For example, an organization might have one Authority
for “QA” and one for “build”. This note is intended to act strictly as a grouping mechanism for the attached occurrences (Attestations). This grouping mechanism also provides a security boundary, since IAM ACLs gate the ability for a principle to attach an occurrence to a given note. It also provides a single point of lookup to find all attached attestation occurrences, even if they don’t all live in the same project.
This type is not used in any activity, and only used as part of another schema.
Fields§
§hint: Option<Hint>
Hint hints at the purpose of the attestation authority.
Trait Implementations§
Source§impl Clone for AttestationNote
impl Clone for AttestationNote
Source§fn clone(&self) -> AttestationNote
fn clone(&self) -> AttestationNote
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 AttestationNote
impl Debug for AttestationNote
Source§impl Default for AttestationNote
impl Default for AttestationNote
Source§fn default() -> AttestationNote
fn default() -> AttestationNote
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttestationNote
impl<'de> Deserialize<'de> for AttestationNote
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 Serialize for AttestationNote
impl Serialize for AttestationNote
impl Part for AttestationNote
Auto Trait Implementations§
impl Freeze for AttestationNote
impl RefUnwindSafe for AttestationNote
impl Send for AttestationNote
impl Sync for AttestationNote
impl Unpin for AttestationNote
impl UnwindSafe for AttestationNote
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more