Skip to main content

MapObj

Struct MapObj 

Source
#[repr(C)]
pub struct MapObj { pub object: Object, pub data: *mut c_void, pub size: u64, pub slots: u64, }
Expand description

Container object for Map. The header fields mirror C++ MapBaseObj (include/tvm/ffi/container/map_base.h) so Map::len can read size without an FFI call; the storage data points to stays opaque.

This is a partial mirror by design: MapBaseObj has one more trailing field after slots_ (a data_deleter_ function pointer), omitted here because this binding is read-only — it only reads fields up to size, which precede it, and never allocates a MapObj itself (the C++ runtime allocates the larger Small/DenseMapBaseObj subclass), so the trailing field is never touched. The layout also assumes TVM_FFI_DEBUG_WITH_ABI_CHANGE is off (the default): with that debug flag set, MapBaseObj gains a leading state_marker field that would shift every offset below.

Fields§

§object: Object§data: *mut c_void

Pointer to the (opaque) key/value storage region (MapBaseObj::data_).

§size: u64

Number of entries (MapBaseObj::size_).

§slots: u64

Number of hash slots; the MSB is a small-map tag (MapBaseObj::slots_).

Trait Implementations§

Source§

impl ObjectCore for MapObj

Source§

const TYPE_KEY: &'static str = "ffi.Map"

the type key of the object
Source§

const TYPE_DEPTH: i32

Depth of this type in the object inheritance tree. Read more
Source§

fn type_index() -> i32

Source§

unsafe fn object_header_mut(this: &mut Self) -> &mut TVMFFIObject

Return the object header This function is implemented as a static function so Read more

Auto Trait Implementations§

§

impl !Freeze for MapObj

§

impl RefUnwindSafe for MapObj

§

impl !Send for MapObj

§

impl !Sync for MapObj

§

impl Unpin for MapObj

§

impl UnsafeUnpin for MapObj

§

impl UnwindSafe for MapObj

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.