pub struct ContractAnalysis {
pub schema_version: String,
pub functions: Vec<FunctionContracts>,
}Expand description
Contract facts grouped by their fully-qualified owner function.
Fields§
§schema_version: String§functions: Vec<FunctionContracts>Trait Implementations§
Source§impl Clone for ContractAnalysis
impl Clone for ContractAnalysis
Source§fn clone(&self) -> ContractAnalysis
fn clone(&self) -> ContractAnalysis
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 ContractAnalysis
impl Debug for ContractAnalysis
Source§impl<'de> Deserialize<'de> for ContractAnalysis
impl<'de> Deserialize<'de> for ContractAnalysis
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 Eq for ContractAnalysis
Source§impl PartialEq for ContractAnalysis
impl PartialEq for ContractAnalysis
Source§impl Serialize for ContractAnalysis
impl Serialize for ContractAnalysis
impl StructuralPartialEq for ContractAnalysis
Auto Trait Implementations§
impl Freeze for ContractAnalysis
impl RefUnwindSafe for ContractAnalysis
impl Send for ContractAnalysis
impl Sync for ContractAnalysis
impl Unpin for ContractAnalysis
impl UnsafeUnpin for ContractAnalysis
impl UnwindSafe for ContractAnalysis
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