pub struct SubmitMultisigned<'a> {
pub common_fields: CommonFields<'a>,
pub tx_json: Value,
pub fail_hard: Option<bool>,
}
Expand description
The server_state command asks the server for various machine-readable information about the rippled server’s current state. The response is almost the same as the server_info method, but uses units that are easier to process instead of easier to read. (For example, XRP values are given in integer drops instead of scientific notation or decimal values, and time is given in milliseconds instead of seconds.)
See Submit Multisigned:
<https://xrpl.org/submit_multisigned.html>
Fields§
§common_fields: CommonFields<'a>
The common fields shared by all requests.
tx_json: Value
§fail_hard: Option<bool>
If true, and the transaction fails locally, do not retry or relay the transaction to other servers.
Implementations§
Trait Implementations§
Source§impl<'a> Clone for SubmitMultisigned<'a>
impl<'a> Clone for SubmitMultisigned<'a>
Source§fn clone(&self) -> SubmitMultisigned<'a>
fn clone(&self) -> SubmitMultisigned<'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 moreSource§impl<'a> Debug for SubmitMultisigned<'a>
impl<'a> Debug for SubmitMultisigned<'a>
Source§impl<'de, 'a> Deserialize<'de> for SubmitMultisigned<'a>
impl<'de, 'a> Deserialize<'de> for SubmitMultisigned<'a>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> From<SubmitMultisigned<'a>> for XRPLRequest<'a>
impl<'a> From<SubmitMultisigned<'a>> for XRPLRequest<'a>
Source§fn from(request: SubmitMultisigned<'a>) -> Self
fn from(request: SubmitMultisigned<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Model for SubmitMultisigned<'a>
impl<'a> Model for SubmitMultisigned<'a>
Source§fn get_errors(&self) -> XRPLModelResult<()>
fn get_errors(&self) -> XRPLModelResult<()>
Collects a models errors and returns the first error that occurs.
Source§fn validate(&self) -> XRPLModelResult<()>
fn validate(&self) -> XRPLModelResult<()>
Simply forwards the error from
get_errors
if there was one.Source§impl<'a> PartialEq for SubmitMultisigned<'a>
impl<'a> PartialEq for SubmitMultisigned<'a>
Source§impl<'a> Request<'a> for SubmitMultisigned<'a>
impl<'a> Request<'a> for SubmitMultisigned<'a>
fn get_common_fields(&self) -> &CommonFields<'a>
fn get_common_fields_mut(&mut self) -> &mut CommonFields<'a>
Source§impl<'a> Serialize for SubmitMultisigned<'a>
impl<'a> Serialize for SubmitMultisigned<'a>
impl<'a> Eq for SubmitMultisigned<'a>
impl<'a> StructuralPartialEq for SubmitMultisigned<'a>
Auto Trait Implementations§
impl<'a> Freeze for SubmitMultisigned<'a>
impl<'a> RefUnwindSafe for SubmitMultisigned<'a>
impl<'a> Send for SubmitMultisigned<'a>
impl<'a> Sync for SubmitMultisigned<'a>
impl<'a> Unpin for SubmitMultisigned<'a>
impl<'a> UnwindSafe for SubmitMultisigned<'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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.