pub struct ExportedAuthority {
pub category: Category,
pub risk: Risk,
pub leaf_call: String,
pub is_transitive: bool,
}Expand description
A single authority finding associated with an exported function.
Fields§
§category: CategoryWhat kind of ambient authority this exercises.
risk: RiskHow dangerous this call is.
leaf_call: StringThe leaf authority call that this traces back to.
is_transitive: boolWhether this is a direct call in the function or transitively propagated.
Trait Implementations§
Source§impl Clone for ExportedAuthority
impl Clone for ExportedAuthority
Source§fn clone(&self) -> ExportedAuthority
fn clone(&self) -> ExportedAuthority
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 ExportedAuthority
impl Debug for ExportedAuthority
Source§impl<'de> Deserialize<'de> for ExportedAuthority
impl<'de> Deserialize<'de> for ExportedAuthority
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
Auto Trait Implementations§
impl Freeze for ExportedAuthority
impl RefUnwindSafe for ExportedAuthority
impl Send for ExportedAuthority
impl Sync for ExportedAuthority
impl Unpin for ExportedAuthority
impl UnsafeUnpin for ExportedAuthority
impl UnwindSafe for ExportedAuthority
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