pub struct Object;Expand description
Placeholder type for object SFields.
Object types in XRPL (like Memo, SignerEntry, etc.) cannot be directly retrieved as complete
values. Instead, they are navigated with Locator to reach specific object fields.
This type intentionally implements neither crate::fields::decoder::FromCurrentTx nor
crate::fields::decoder::FromLedger, so passing an aggregate SField (e.g. sfield::Memo)
to a get_field accessor is a compile-time error rather than a runtime failure.
Trait Implementations§
impl Copy for Object
impl Eq for Object
impl StructuralPartialEq for Object
Auto Trait Implementations§
impl Freeze for Object
impl RefUnwindSafe for Object
impl Send for Object
impl Sync for Object
impl Unpin for Object
impl UnsafeUnpin for Object
impl UnwindSafe for Object
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
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