pub struct PostageBatchOptions {
pub label: Option<String>,
pub immutable: Option<bool>,
pub gas_price: Option<String>,
pub gas_limit: Option<String>,
}Expand description
Postage stamp creation options. Mirrors bee-js / bee-go
PostageBatchOptions.
Fields§
§label: Option<String>Human-readable label.
immutable: Option<bool>Whether the batch is immutable.
gas_price: Option<String>Override the gas price (decimal string).
gas_limit: Option<String>Override the gas limit (decimal string).
Trait Implementations§
Source§impl Clone for PostageBatchOptions
impl Clone for PostageBatchOptions
Source§fn clone(&self) -> PostageBatchOptions
fn clone(&self) -> PostageBatchOptions
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 PostageBatchOptions
impl Debug for PostageBatchOptions
Source§impl Default for PostageBatchOptions
impl Default for PostageBatchOptions
Source§fn default() -> PostageBatchOptions
fn default() -> PostageBatchOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PostageBatchOptions
impl RefUnwindSafe for PostageBatchOptions
impl Send for PostageBatchOptions
impl Sync for PostageBatchOptions
impl Unpin for PostageBatchOptions
impl UnsafeUnpin for PostageBatchOptions
impl UnwindSafe for PostageBatchOptions
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