#[repr(C)]pub struct apr_text {
pub text: *const c_char,
pub next: *mut apr_text,
}Expand description
Structure to keep a linked list of pieces of text
Fields§
§text: *const c_charThe current piece of text
next: *mut apr_texta pointer to the next piece of text
Trait Implementations§
Auto Trait Implementations§
impl Freeze for apr_text
impl RefUnwindSafe for apr_text
impl !Send for apr_text
impl !Sync for apr_text
impl Unpin for apr_text
impl UnsafeUnpin for apr_text
impl UnwindSafe for apr_text
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