pub struct IndexerSearchKey {
pub script: Script,
pub script_type: IndexerScriptType,
pub script_search_mode: Option<IndexerSearchMode>,
pub filter: Option<IndexerSearchKeyFilter>,
pub with_data: Option<bool>,
pub group_by_transaction: Option<bool>,
}
Expand description
SearchKey represent indexer support params
Fields§
§script: Script
Script
script_type: IndexerScriptType
Script Type
script_search_mode: Option<IndexerSearchMode>
Script search mode, optional default is prefix
, means search script with prefix
filter: Option<IndexerSearchKeyFilter>
filter cells by following conditions, all conditions are optional
with_data: Option<bool>
bool, optional default is true
, if with_data is set to false, the field of returning cell.output_data is null in the result
group_by_transaction: Option<bool>
bool, optional default is false
, if group_by_transaction is set to true, the returning objects will be grouped by the tx hash
Trait Implementations§
Source§impl Default for IndexerSearchKey
impl Default for IndexerSearchKey
Source§impl<'de> Deserialize<'de> for IndexerSearchKey
impl<'de> Deserialize<'de> for IndexerSearchKey
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 IndexerSearchKey
impl JsonSchema for IndexerSearchKey
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(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &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 moreAuto Trait Implementations§
impl !Freeze for IndexerSearchKey
impl RefUnwindSafe for IndexerSearchKey
impl Send for IndexerSearchKey
impl Sync for IndexerSearchKey
impl Unpin for IndexerSearchKey
impl UnwindSafe for IndexerSearchKey
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