pub struct IndexerRange { /* private fields */ }
Expand description
A array represent (half-open) range bounded inclusively below and exclusively above [start, end).
§Examples
JSON | range |
---|---|
[“0x0”, “0x2”] | [0, 2) |
[“0x0”, “0x174876e801”] | [0, 100000000001) |
Implementations§
Trait Implementations§
Source§impl Default for IndexerRange
impl Default for IndexerRange
Source§fn default() -> IndexerRange
fn default() -> IndexerRange
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IndexerRange
impl<'de> Deserialize<'de> for IndexerRange
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 IndexerRange
impl JsonSchema for IndexerRange
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 IndexerRange
impl RefUnwindSafe for IndexerRange
impl Send for IndexerRange
impl Sync for IndexerRange
impl Unpin for IndexerRange
impl UnwindSafe for IndexerRange
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