pub struct SuiObject {
pub object_id: [u8; 32],
pub version: u64,
pub owner: Vec<u8>,
pub object_type: String,
pub has_public_transfer: bool,
}Expand description
Sui object representation
Fields§
§object_id: [u8; 32]§version: u64§owner: Vec<u8>§object_type: String§has_public_transfer: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for SuiObject
impl RefUnwindSafe for SuiObject
impl Send for SuiObject
impl Sync for SuiObject
impl Unpin for SuiObject
impl UnsafeUnpin for SuiObject
impl UnwindSafe for SuiObject
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