pub struct ReceiptRuleSetRecord {
pub name: String,
pub rules: Vec<ReceiptRule>,
pub created_timestamp: DateTime<Utc>,
}Expand description
Internal receipt rule set record.
Fields§
§name: StringRule set name.
rules: Vec<ReceiptRule>Rules within this rule set.
created_timestamp: DateTime<Utc>Creation timestamp.
Trait Implementations§
Source§impl Clone for ReceiptRuleSetRecord
impl Clone for ReceiptRuleSetRecord
Source§fn clone(&self) -> ReceiptRuleSetRecord
fn clone(&self) -> ReceiptRuleSetRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ReceiptRuleSetRecord
impl RefUnwindSafe for ReceiptRuleSetRecord
impl Send for ReceiptRuleSetRecord
impl Sync for ReceiptRuleSetRecord
impl Unpin for ReceiptRuleSetRecord
impl UnsafeUnpin for ReceiptRuleSetRecord
impl UnwindSafe for ReceiptRuleSetRecord
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