#[repr(C, packed(4))]pub struct TextLine {
pub next: Pointer<TextLine>,
pub prev: Pointer<TextLine>,
pub line: Pointer<i8>,
pub format: Pointer<i8>,
pub len: i32,
pub _pad0: [i8; 4],
}
Fields§
§next: Pointer<TextLine>
§prev: Pointer<TextLine>
§line: Pointer<i8>
§format: Pointer<i8>
§len: i32
§_pad0: [i8; 4]
Trait Implementations§
Source§impl GeneratedBlendStruct for TextLine
impl GeneratedBlendStruct for TextLine
const BLEND_VERSION: Version
const BLEND_POINTER_SIZE: usize = 8usize
const BLEND_ENDIANNESS: Endianness = Endianness::Little
const STRUCT_NAME: &'static str = "TextLine"
const STRUCT_INDEX: usize = 31usize
const STRUCT_TYPE_INDEX: usize = 54usize
const IS_SYNTHETIC: bool = false
impl PointerTarget<TextLine> for TextLine
Auto Trait Implementations§
impl Freeze for TextLine
impl RefUnwindSafe for TextLine
impl Send for TextLine
impl Sync for TextLine
impl Unpin for TextLine
impl UnwindSafe for TextLine
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