pub struct Entry<M> { /* private fields */ }
Expand description
§An entry in a Falco plugin table
This type wraps an opaque pointer representing an entry in a table and allows individual
field access (given a Field
reference).
You can add methods to this type using the #[derive(TableMetadata)]
macro.
See the module documentation for details.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<M> Freeze for Entry<M>where
M: Freeze,
impl<M> RefUnwindSafe for Entry<M>where
M: RefUnwindSafe,
impl<M> !Send for Entry<M>
impl<M> !Sync for Entry<M>
impl<M> Unpin for Entry<M>where
M: Unpin,
impl<M> UnwindSafe for Entry<M>where
M: UnwindSafe,
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