pub struct SecurityControlSite {
pub kind: SecurityControlKind,
pub callee_path: String,
pub span_start: u32,
pub span_end: u32,
}Expand description
An observed control call or guard pattern, without proof that it protects a sink.
Fields§
§kind: SecurityControlKindControl family.
callee_path: StringFlattened callee path or a stable synthetic name for guard-derived controls.
span_start: u32Byte offset of the control span start.
span_end: u32Byte offset of the control span end.
Trait Implementations§
Source§impl Clone for SecurityControlSite
impl Clone for SecurityControlSite
Source§impl Debug for SecurityControlSite
impl Debug for SecurityControlSite
impl<'__de> Decode<'__de> for SecurityControlSitewhere
'__de:,
Source§impl<'de> Deserialize<'de> for SecurityControlSite
impl<'de> Deserialize<'de> for SecurityControlSite
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
impl Encode for SecurityControlSite
Auto Trait Implementations§
impl Freeze for SecurityControlSite
impl RefUnwindSafe for SecurityControlSite
impl Send for SecurityControlSite
impl Sync for SecurityControlSite
impl Unpin for SecurityControlSite
impl UnsafeUnpin for SecurityControlSite
impl UnwindSafe for SecurityControlSite
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