Struct fidl_fuchsia_net_filter::RuleId
source · pub struct RuleId {
pub routine: RoutineId,
pub index: u32,
}
Expand description
A unique identifier for a Rule
.
Fields§
§routine: RoutineId
The routine to which the rule is added.
index: u32
The index of the rule.
Must be unique within the routine to which the rule is added. Within a
given routine, rules will be executed in order of index
. Note that
indices in a routine can be sparse; this allows removal and insertion of
rules while maintaining stable indices for rules that were unchanged.
Trait Implementations§
source§impl<D: ResourceDialect> Decode<RuleId, D> for RuleId
impl<D: ResourceDialect> Decode<RuleId, D> for RuleId
source§impl<D: ResourceDialect, T0: Encode<RoutineId, D>, T1: Encode<u32, D>> Encode<RuleId, D> for (T0, T1)
impl<D: ResourceDialect, T0: Encode<RoutineId, D>, T1: Encode<u32, D>> Encode<RuleId, D> for (T0, T1)
source§impl Ord for RuleId
impl Ord for RuleId
source§impl PartialEq for RuleId
impl PartialEq for RuleId
source§impl PartialOrd for RuleId
impl PartialOrd for RuleId
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl TypeMarker for RuleId
impl TypeMarker for RuleId
source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.source§impl ValueTypeMarker for RuleId
impl ValueTypeMarker for RuleId
impl Eq for RuleId
impl Persistable for RuleId
impl StructuralPartialEq for RuleId
Auto Trait Implementations§
impl Freeze for RuleId
impl RefUnwindSafe for RuleId
impl Send for RuleId
impl Sync for RuleId
impl Unpin for RuleId
impl UnwindSafe for RuleId
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)