pub struct Transaction { /* private fields */ }Expand description
Request descriptor for one Gingr transaction record by provider ID.
Implementations§
Source§impl Transaction
impl Transaction
Sourcepub fn new(id: TransactionId) -> Self
pub fn new(id: TransactionId) -> Self
Constructs this typed Gingr boundary value after the caller has chosen the provider input to trust.
Sourcepub fn sensitivity(&self) -> ResponseSensitivity
pub fn sensitivity(&self) -> ResponseSensitivity
Describes whether a response payload should be quarantined from normal logs.
Trait Implementations§
Source§impl Clone for Transaction
impl Clone for Transaction
Source§fn clone(&self) -> Transaction
fn clone(&self) -> Transaction
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 Transaction
impl Debug for Transaction
Source§impl PartialEq for Transaction
impl PartialEq for Transaction
Source§impl Request for Transaction
impl Request for Transaction
Source§fn parameters(&self) -> Vec<(String, String)>
fn parameters(&self) -> Vec<(String, String)>
Describes the provider wire contract for this Gingr request.
Source§fn sensitive_parameter_names(&self) -> &'static [&'static str]
fn sensitive_parameter_names(&self) -> &'static [&'static str]
Describes the provider wire contract for this Gingr request.
Source§fn request_parts(&self) -> RequestParts
fn request_parts(&self) -> RequestParts
Describes the provider wire contract for this Gingr request.
impl Eq for Transaction
impl StructuralPartialEq for Transaction
Auto Trait Implementations§
impl Freeze for Transaction
impl RefUnwindSafe for Transaction
impl Send for Transaction
impl Sync for Transaction
impl Unpin for Transaction
impl UnsafeUnpin for Transaction
impl UnwindSafe for Transaction
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