pub enum KeyletType<'a> {
Show 21 variants
Hook(&'a [u8]),
HookState(&'a [u8], &'a [u8]),
Account(&'a [u8]),
Amendments,
Child(&'a [u8]),
Skip(Option<(u32, u32)>),
Fees,
NegativeUnl,
Line(&'a [u8], &'a [u8], &'a [u8]),
Offer(&'a [u8], u32),
Quality(&'a [u8], u32, u32),
EmittedDir,
Signers(&'a [u8]),
Check(&'a [u8], u32),
DepositPreauth(&'a [u8], &'a [u8]),
Unchecked(&'a [u8]),
OwnerDir(&'a [u8]),
Page(&'a [u8], u32, u32),
Escrow(&'a [u8], u32),
Paychan(&'a [u8], &'a [u8], u32),
Emitted(&'a [u8]),
}
Expand description
Keylet type
Variants§
Hook(&'a [u8])
HookState(&'a [u8], &'a [u8])
Account(&'a [u8])
Amendments
Child(&'a [u8])
Skip(Option<(u32, u32)>)
Fees
NegativeUnl
Line(&'a [u8], &'a [u8], &'a [u8])
Offer(&'a [u8], u32)
Quality(&'a [u8], u32, u32)
EmittedDir
Signers(&'a [u8])
Check(&'a [u8], u32)
DepositPreauth(&'a [u8], &'a [u8])
Unchecked(&'a [u8])
OwnerDir(&'a [u8])
Page(&'a [u8], u32, u32)
Escrow(&'a [u8], u32)
Paychan(&'a [u8], &'a [u8], u32)
Emitted(&'a [u8])
Trait Implementations§
Source§impl<'a> Clone for KeyletType<'a>
impl<'a> Clone for KeyletType<'a>
Source§fn clone(&self) -> KeyletType<'a>
fn clone(&self) -> KeyletType<'a>
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 moreimpl<'a> Copy for KeyletType<'a>
Auto Trait Implementations§
impl<'a> Freeze for KeyletType<'a>
impl<'a> RefUnwindSafe for KeyletType<'a>
impl<'a> Send for KeyletType<'a>
impl<'a> Sync for KeyletType<'a>
impl<'a> Unpin for KeyletType<'a>
impl<'a> UnwindSafe for KeyletType<'a>
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