pub struct HeaderBinaryOptions {
pub expire_at_time: Option<i64>,
pub hold_until_minor_block: Option<u64>,
pub authorities: Option<Vec<String>>,
}Expand description
Options for extended transaction header fields (fields 5-7).
Fields§
§expire_at_time: Option<i64>Expire: at_time as Unix seconds, signed (field 5)
hold_until_minor_block: Option<u64>HoldUntil: minor_block number (field 6)
Additional authority URLs (field 7, repeatable)
Trait Implementations§
Source§impl Clone for HeaderBinaryOptions
impl Clone for HeaderBinaryOptions
Source§fn clone(&self) -> HeaderBinaryOptions
fn clone(&self) -> HeaderBinaryOptions
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 HeaderBinaryOptions
impl Debug for HeaderBinaryOptions
Source§impl Default for HeaderBinaryOptions
impl Default for HeaderBinaryOptions
Source§fn default() -> HeaderBinaryOptions
fn default() -> HeaderBinaryOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HeaderBinaryOptions
impl RefUnwindSafe for HeaderBinaryOptions
impl Send for HeaderBinaryOptions
impl Sync for HeaderBinaryOptions
impl Unpin for HeaderBinaryOptions
impl UnsafeUnpin for HeaderBinaryOptions
impl UnwindSafe for HeaderBinaryOptions
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