pub struct SignerColumn {
pub raw_value: Value,
pub bytes: Vec<u8>,
}Expand description
Pulled-apart signer / signature reserved columns. Carries:
- The user’s original
Value(for round-trip storage so SELECT andWHERE signer_pubkey = '<hex>'predicates compare against the same encoding the caller supplied — Text-typed hex on the JSON / SQL path, Blob on the binary protobuf path). - The decoded raw bytes used to verify the Ed25519 signature.
Fields§
§raw_value: Value§bytes: Vec<u8>Auto Trait Implementations§
impl Freeze for SignerColumn
impl RefUnwindSafe for SignerColumn
impl Send for SignerColumn
impl Sync for SignerColumn
impl Unpin for SignerColumn
impl UnsafeUnpin for SignerColumn
impl UnwindSafe for SignerColumn
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> 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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request