pub struct RugCheckResult {
pub mint: String,
pub is_rugged: bool,
pub risk_score: i32,
pub risk_factors: i32,
pub status: String,
pub check_time: DateTime<Utc>,
}Expand description
Simple rug check result
Fields§
§mint: StringToken mint address
is_rugged: boolWhether token has been rugged
risk_score: i32Risk score (0-100)
risk_factors: i32Number of risk factors detected
status: StringStatus message
check_time: DateTime<Utc>Check timestamp
Trait Implementations§
Source§impl Clone for RugCheckResult
impl Clone for RugCheckResult
Source§fn clone(&self) -> RugCheckResult
fn clone(&self) -> RugCheckResult
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 RugCheckResult
impl Debug for RugCheckResult
Source§impl<'de> Deserialize<'de> for RugCheckResult
impl<'de> Deserialize<'de> for RugCheckResult
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 JsonSchema for RugCheckResult
impl JsonSchema for RugCheckResult
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for RugCheckResult
impl RefUnwindSafe for RugCheckResult
impl Send for RugCheckResult
impl Sync for RugCheckResult
impl Unpin for RugCheckResult
impl UnwindSafe for RugCheckResult
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