pub struct SubmitPostV1 {
pub submit_post_header_signature: Signature,
pub submit_post_header_bytes: Bytes,
pub encrypted_post_signature: Signature,
pub encrypted_post_bytes: Bytes,
}Fields§
§submit_post_header_signature: Signature§submit_post_header_bytes: Bytes§encrypted_post_signature: Signature§encrypted_post_bytes: BytesImplementations§
Source§impl SubmitPostV1
impl SubmitPostV1
pub fn new( submit_post_header: &SubmitPostHeaderV1, encrypted_post_signature: Signature, encrypted_post_bytes: Bytes, signature_key: SignatureKey, ) -> Result<Self>
pub fn submit_post_header_get(&self) -> Result<SubmitPostHeaderV1>
Trait Implementations§
Source§impl Clone for SubmitPostV1
impl Clone for SubmitPostV1
Source§fn clone(&self) -> SubmitPostV1
fn clone(&self) -> SubmitPostV1
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 SubmitPostV1
impl Debug for SubmitPostV1
Source§impl PartialEq for SubmitPostV1
impl PartialEq for SubmitPostV1
impl StructuralPartialEq for SubmitPostV1
Auto Trait Implementations§
impl !Freeze for SubmitPostV1
impl RefUnwindSafe for SubmitPostV1
impl Send for SubmitPostV1
impl Sync for SubmitPostV1
impl Unpin for SubmitPostV1
impl UnsafeUnpin for SubmitPostV1
impl UnwindSafe for SubmitPostV1
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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