pub struct RuleIdentity {
pub rule_id: u64,
pub rule_name: Option<String>,
pub rule_file: String,
pub rule_line: u32,
pub rule_column: u32,
}Fields§
§rule_id: u64§rule_name: Option<String>§rule_file: String§rule_line: u32§rule_column: u32Trait Implementations§
Source§impl Clone for RuleIdentity
impl Clone for RuleIdentity
Source§fn clone(&self) -> RuleIdentity
fn clone(&self) -> RuleIdentity
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RuleIdentity
impl Debug for RuleIdentity
Source§impl<'de> Deserialize<'de> for RuleIdentity
impl<'de> Deserialize<'de> for RuleIdentity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RuleIdentity
impl PartialEq for RuleIdentity
Source§fn eq(&self, other: &RuleIdentity) -> bool
fn eq(&self, other: &RuleIdentity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RuleIdentity
impl Serialize for RuleIdentity
impl Eq for RuleIdentity
impl StructuralPartialEq for RuleIdentity
Auto Trait Implementations§
impl Freeze for RuleIdentity
impl RefUnwindSafe for RuleIdentity
impl Send for RuleIdentity
impl Sync for RuleIdentity
impl Unpin for RuleIdentity
impl UnsafeUnpin for RuleIdentity
impl UnwindSafe for RuleIdentity
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