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