#[repr(C)]pub struct apr_table_entry_t {
pub key: *mut c_char,
pub val: *mut c_char,
pub key_checksum: apr_uint32_t,
}Expand description
The type for each entry in a string-content table
Fields§
§key: *mut c_charThe key for the current table entry
val: *mut c_charThe value for the current table entry
key_checksum: apr_uint32_tA checksum for the key, for use by the apr_table internals
Trait Implementations§
Source§impl Clone for apr_table_entry_t
impl Clone for apr_table_entry_t
Source§fn clone(&self) -> apr_table_entry_t
fn clone(&self) -> apr_table_entry_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for apr_table_entry_t
impl Debug for apr_table_entry_t
impl Copy for apr_table_entry_t
Auto Trait Implementations§
impl Freeze for apr_table_entry_t
impl RefUnwindSafe for apr_table_entry_t
impl !Send for apr_table_entry_t
impl !Sync for apr_table_entry_t
impl Unpin for apr_table_entry_t
impl UnsafeUnpin for apr_table_entry_t
impl UnwindSafe for apr_table_entry_t
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