pub enum CyberQuery {
Rank(RankQuery),
Graph(GraphQuery),
DMN(DMNQuery),
Grid(GridQuery),
Bandwidth(BandwidthQuery),
Liquidity(LiquidityQuery),
TokenFactory(TokenFactoryQuery),
}
Variants§
Rank(RankQuery)
Graph(GraphQuery)
DMN(DMNQuery)
Grid(GridQuery)
Bandwidth(BandwidthQuery)
Liquidity(LiquidityQuery)
TokenFactory(TokenFactoryQuery)
Implementations§
Source§impl CyberQuery
impl CyberQuery
pub fn particle_rank(particle: String) -> Self
pub fn graph_stats() -> Self
pub fn thought(program: String, name: String) -> Self
pub fn thought_stats(program: String, name: String) -> Self
pub fn thoughts_fees() -> Self
pub fn source_routes(source: String) -> Self
pub fn source_routed_energy(source: String) -> Self
pub fn destination_routed_energy(destination: String) -> Self
pub fn route(source: String, destination: String) -> Self
pub fn bandwidth_price() -> Self
pub fn bandwidth_load() -> Self
pub fn bandwidth_total() -> Self
pub fn neuron_bandwidth(neuron: String) -> Self
pub fn pool_params(pool_id: u64) -> Self
pub fn pool_liquidity(pool_id: u64) -> Self
pub fn pool_supply(pool_id: u64) -> Self
pub fn pool_price(pool_id: u64) -> Self
pub fn pool_address(pool_id: u64) -> Self
pub fn full_denom(creator_addr: String, subdenom: String) -> Self
pub fn denom_metadata(denom: String) -> Self
pub fn denom_admin(denom: String) -> Self
pub fn denoms_by_creator(creator: String) -> Self
pub fn denom_creation_fee() -> Self
Trait Implementations§
Source§impl Clone for CyberQuery
impl Clone for CyberQuery
Source§fn clone(&self) -> CyberQuery
fn clone(&self) -> CyberQuery
Returns a copy 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 CyberQuery
impl Debug for CyberQuery
Source§impl<'de> Deserialize<'de> for CyberQuery
impl<'de> Deserialize<'de> for CyberQuery
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 CyberQuery
impl JsonSchema for CyberQuery
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
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 is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for CyberQuery
impl PartialEq for CyberQuery
Source§impl QueryResponses for CyberQuery
impl QueryResponses for CyberQuery
fn response_schemas_impl() -> BTreeMap<String, RootSchema>
fn response_schemas() -> Result<BTreeMap<String, RootSchema>, IntegrityError>
Source§impl Serialize for CyberQuery
impl Serialize for CyberQuery
impl CustomQuery for CyberQuery
impl StructuralPartialEq for CyberQuery
Auto Trait Implementations§
impl Freeze for CyberQuery
impl RefUnwindSafe for CyberQuery
impl Send for CyberQuery
impl Sync for CyberQuery
impl Unpin for CyberQuery
impl UnwindSafe for CyberQuery
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