#[repr(C)]pub struct RTableRow {
pub cells: Vec<RCell>,
}Expand description
FFI-safe mirror of TableRow — one row of an arbitrary-width
[RReading::Table].
Fields§
§cells: Vec<RCell>Implementations§
Trait Implementations§
Source§impl IStable for RTableRow
impl IStable for RTableRow
Source§const REPORT: &'static TypeReport
const REPORT: &'static TypeReport
A compile-time generated report of the fields of the type, allowing for compatibility inspection.
Source§const ID: u64
const ID: u64
A stable (and ideally unique) identifier for the type. Often generated using
crate::report::gen_id, but can be manually set.Source§type ForbiddenValues = <Struct<Vec<RCell>> as IStable>::ForbiddenValues
type ForbiddenValues = <Struct<Vec<RCell>> as IStable>::ForbiddenValues
The values that the annotated type cannot occupy.
Source§type UnusedBits = <Struct<Vec<RCell>> as IStable>::UnusedBits
type UnusedBits = <Struct<Vec<RCell>> as IStable>::UnusedBits
The padding bits in the annotated types
Source§type Align = <Struct<Vec<RCell>> as IStable>::Align
type Align = <Struct<Vec<RCell>> as IStable>::Align
The alignment of the annotated type in bytes.
Source§type HasExactlyOneNiche = <Struct<Vec<RCell>> as IStable>::HasExactlyOneNiche
type HasExactlyOneNiche = <Struct<Vec<RCell>> as IStable>::HasExactlyOneNiche
Allows the detection of whether or not
core::option::Options are stable: Read moreSource§type ContainsIndirections = <Struct<Vec<RCell>> as IStable>::ContainsIndirections
type ContainsIndirections = <Struct<Vec<RCell>> as IStable>::ContainsIndirections
Whether or not the type contains indirections (pointers, indices in independent data-structures…)
Auto Trait Implementations§
impl Freeze for RTableRow
impl RefUnwindSafe for RTableRow
impl Send for RTableRow
impl Sync for RTableRow
impl Unpin for RTableRow
impl UnsafeUnpin for RTableRow
impl UnwindSafe for RTableRow
Blanket Implementations§
Source§impl<Source> AccessAs for Source
impl<Source> AccessAs for Source
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