Proof

Struct Proof 

Source
pub struct Proof { /* private fields */ }
Expand description

Serialized Proof (crate review or trust of someone)

A signed proof containing some signed Content

Implementations§

Source§

impl Proof

Source

pub fn from_parts(body: String, signature: String) -> Result<Self, Error>

Assumes the body has been properly signed already

Source

pub fn from_legacy_parts( body: String, signature: String, type_name: String, ) -> Result<Self, Error>

For back-compat, ignore it

Source

pub fn body(&self) -> &str

YAML in it

Source

pub fn signature(&self) -> &str

Signature attached to it

Source

pub fn digest(&self) -> &[u8; 32]

Hash of the body

Source

pub fn parse_content<T: ContentDeserialize>(&self) -> Result<T, Error>

Read the YAML with serde, you should already know which type to expect from context

Source§

impl Proof

Source

pub fn parse_from(reader: impl Read) -> Result<Vec<Self>, Error>

Read from a file (uses buffering)

Source

pub fn verify(&self) -> Result<(), Error>

Checks the signature

Trait Implementations§

Source§

impl Clone for Proof

Source§

fn clone(&self) -> Proof

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl CommonOps for Proof

Source§

fn common(&self) -> &Common

Source§

fn kind(&self) -> &str

Is it crate review or something else?
Source§

fn from(&self) -> &PublicId

Who wrote and signed this review/trust
Source§

fn date(&self) -> &DateTime<FixedOffset>

When it has been written according to its creator
Source§

fn date_utc(&self) -> DateTime<Utc>

When it has been written according to its creator
Source§

fn author_id(&self) -> &Id

ID of the person who signed it
Source§

fn author_public_id(&self) -> &PublicId

Displayable version of ID of the person who signed it
Source§

fn ensure_kind_is(&self, kind: &str) -> ValidationResult<()>

Easy check of kind()
Source§

impl Debug for Proof

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Proof

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Proof

§

impl RefUnwindSafe for Proof

§

impl Send for Proof

§

impl Sync for Proof

§

impl Unpin for Proof

§

impl UnwindSafe for Proof

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V