Enum Value

Source
#[non_exhaustive]
pub enum Value {
Show 30 variants None, Null, Bool(bool), Number(Number), Strand(Strand), Duration(Duration), Datetime(Datetime), Uuid(Uuid), Array(Array), Object(Object), Geometry(Geometry), Bytes(Bytes), Thing(Thing), Param(Param), Idiom(Idiom), Table(Table), Mock(Mock), Regex(Regex), Cast(Box<Cast>), Block(Box<Block>), Range(Box<Range>), Edges(Box<Edges>), Future(Box<Future>), Constant(Constant), Function(Box<Function>), Subquery(Box<Subquery>), Expression(Box<Expression>), Query(Query), Model(Box<Model>), Closure(Box<Closure>),
}

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

None

§

Null

§

Bool(bool)

§

Number(Number)

§

Strand(Strand)

§

Duration(Duration)

§

Datetime(Datetime)

§

Uuid(Uuid)

§

Array(Array)

§

Object(Object)

§

Geometry(Geometry)

§

Bytes(Bytes)

§

Thing(Thing)

§

Param(Param)

§

Idiom(Idiom)

§

Table(Table)

§

Mock(Mock)

§

Regex(Regex)

§

Cast(Box<Cast>)

§

Block(Box<Block>)

§

Range(Box<Range>)

§

Edges(Box<Edges>)

§

Future(Box<Future>)

§

Constant(Constant)

§

Function(Box<Function>)

§

Subquery(Box<Subquery>)

§

Expression(Box<Expression>)

§

Query(Query)

§

Model(Box<Model>)

§

Closure(Box<Closure>)

Implementations§

Source§

impl Value

Source

pub fn base() -> Value

Create an empty Object Value

Source

pub fn ok(self) -> Result<Value, Error>

Convert this Value to a Result

Source

pub fn some(self) -> Option<Value>

Convert this Value to an Option

Source

pub fn is_none_or_null(&self) -> bool

Check if this Value is NONE or NULL

Source

pub fn is_none(&self) -> bool

Check if this Value is NONE

Source

pub fn is_null(&self) -> bool

Check if this Value is NULL

Source

pub fn is_some(&self) -> bool

Check if this Value not NONE or NULL

Source

pub fn is_bool(&self) -> bool

Check if this Value is a boolean value

Source

pub fn is_true(&self) -> bool

Check if this Value is TRUE or ‘true’

Source

pub fn is_false(&self) -> bool

Check if this Value is FALSE or ‘false’

Source

pub fn is_truthy(&self) -> bool

Check if this Value is truthy

Source

pub fn is_uuid(&self) -> bool

Check if this Value is a UUID

Source

pub fn is_thing(&self) -> bool

Check if this Value is a Thing

Source

pub fn is_mock(&self) -> bool

Check if this Value is a Mock

Source

pub fn is_param(&self) -> bool

Check if this Value is a Param

Source

pub fn is_range(&self) -> bool

Check if this Value is a Range

Source

pub fn is_table(&self) -> bool

Check if this Value is a Table

Source

pub fn is_strand(&self) -> bool

Check if this Value is a Strand

Source

pub fn is_query(&self) -> bool

Check if this Value is a Query

Source

pub fn is_bytes(&self) -> bool

Check if this Value is a float Number

Source

pub fn is_array(&self) -> bool

Check if this Value is an Array

Source

pub fn is_object(&self) -> bool

Check if this Value is an Object

Source

pub fn is_number(&self) -> bool

Check if this Value is a Number

Source

pub fn is_datetime(&self) -> bool

Check if this Value is a Datetime

Source

pub fn is_duration(&self) -> bool

Check if this Value is a Duration

Source

pub fn is_record(&self) -> bool

Check if this Value is a Thing

Source

pub fn is_record_of_table(&self, table: String) -> bool

Check if this Value is a Thing, and belongs to a certain table

Source

pub fn is_geometry(&self) -> bool

Check if this Value is a Geometry

Source

pub fn is_int(&self) -> bool

Check if this Value is an int Number

Source

pub fn is_float(&self) -> bool

Check if this Value is a float Number

Source

pub fn is_decimal(&self) -> bool

Check if this Value is a decimal Number

Source

pub fn is_nan(&self) -> bool

Check if this Value is a Number but is a NAN

Source

pub fn is_integer(&self) -> bool

Check if this Value is a Number and is an integer

Source

pub fn is_positive(&self) -> bool

Check if this Value is a Number and is positive

Source

pub fn is_negative(&self) -> bool

Check if this Value is a Number and is negative

Source

pub fn is_zero_or_positive(&self) -> bool

Check if this Value is a Number and is zero or positive

Source

pub fn is_zero_or_negative(&self) -> bool

Check if this Value is a Number and is zero or negative

Source

pub fn is_record_type(&self, types: &[Table]) -> bool

Check if this Value is a Thing of a specific type

Source

pub fn is_geometry_type(&self, types: &[String]) -> bool

Check if this Value is a Geometry of a specific type

Source

pub fn as_string(self) -> String

Convert this Value into a String

Source

pub fn as_raw_string(self) -> String

Converts this Value into an unquoted String

Source

pub fn to_raw_string(&self) -> String

Converts this Value into an unquoted String

Source

pub fn to_idiom(&self) -> Idiom

Converts this Value into a field name

Source

pub fn can_start_idiom(&self) -> bool

Returns if this value can be the start of a idiom production.

Source

pub fn to_operations(&self) -> Result<Vec<Operation>, Error>

Try to convert this Value into a set of JSONPatch operations

Source

pub fn into_json(self) -> Value

Converts a surrealdb::sq::Value into a serde_json::Value

This converts certain types like Thing into their simpler formats instead of the format used internally by SurrealDB.

Source

pub fn could_be_table(self) -> Value

Treat a string as a table name

Source

pub fn kindof(&self) -> &'static str

Treat a string as a table name

Source

pub fn record(self) -> Option<Thing>

Fetch the record id if there is one

Source

pub fn equal(&self, other: &Value) -> bool

Check if this Value is equal to another Value

Source

pub fn all_equal(&self, other: &Value) -> bool

Check if all Values in an Array are equal to another Value

Source

pub fn any_equal(&self, other: &Value) -> bool

Check if any Values in an Array are equal to another Value

Source

pub fn fuzzy(&self, other: &Value) -> bool

Fuzzy check if this Value is equal to another Value

Source

pub fn all_fuzzy(&self, other: &Value) -> bool

Fuzzy check if all Values in an Array are equal to another Value

Source

pub fn any_fuzzy(&self, other: &Value) -> bool

Fuzzy check if any Values in an Array are equal to another Value

Source

pub fn contains(&self, other: &Value) -> bool

Check if this Value contains another Value

Source

pub fn contains_all(&self, other: &Value) -> bool

Check if all Values in an Array contain another Value

Source

pub fn contains_any(&self, other: &Value) -> bool

Check if any Values in an Array contain another Value

Source

pub fn intersects(&self, other: &Value) -> bool

Check if this Value intersects another Value

Source

pub fn lexical_cmp(&self, other: &Value) -> Option<Ordering>

Compare this Value to another Value lexicographically

Source

pub fn natural_cmp(&self, other: &Value) -> Option<Ordering>

Compare this Value to another Value using natural numerical comparison

Source

pub fn natural_lexical_cmp(&self, other: &Value) -> Option<Ordering>

Compare this Value to another Value lexicographically and using natural numerical comparison

Source§

impl Value

Source

pub fn all(&self) -> Value

Source§

impl Value

Source

pub fn clear(&mut self) -> Result<(), Error>

Source§

impl Value

Source

pub fn first(&self) -> Value

Source§

impl Value

Source

pub fn flatten(self) -> Value

Source§

impl Value

Source

pub fn last(&self) -> Value

Source§

impl Value

Source

pub fn pick(&self, path: &[Part]) -> Value

Synchronous method for getting a field from a Value

Source§

impl Value

Source

pub fn put(&mut self, path: &[Part], val: Value)

Synchronous method for setting a field on a Value

Source§

impl Value

Source

pub fn rid(&self) -> Value

Source§

impl Value

Source

pub fn walk(&self, path: &[Part]) -> Vec<(Idiom, Value)>

Trait Implementations§

Source§

impl Add<Value> for Array

Source§

type Output = Array

The resulting type after applying the + operator.
Source§

fn add(self, other: Value) -> Array

Performs the + operation. Read more
Source§

impl Clone for Value

Source§

fn clone(&self) -> Value

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Value

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for Value

Source§

fn default() -> Value

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Value

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<Value, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for Value

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl From<&Claims> for Value

Source§

fn from(v: &Claims) -> Value

Converts to this type from the input type.
Source§

impl From<&RangeValue> for Value

Source§

fn from(rv: &RangeValue) -> Value

Converts to this type from the input type.
Source§

impl From<&Value> for Vec<u8>

Source§

fn from(v: &Value) -> Vec<u8>

Converts to this type from the input type.
Source§

impl From<&Vec<u8>> for Value

Source§

fn from(v: &Vec<u8>) -> Value

Converts to this type from the input type.
Source§

impl From<&str> for Value

Source§

fn from(v: &str) -> Value

Converts to this type from the input type.
Source§

impl From<[f64; 2]> for Value

Source§

fn from(v: [f64; 2]) -> Value

Converts to this type from the input type.
Source§

impl From<(f64, f64)> for Value

Source§

fn from(v: (f64, f64)) -> Value

Converts to this type from the input type.
Source§

impl From<Array> for Value

Source§

fn from(v: Array) -> Value

Converts to this type from the input type.
Source§

impl From<BStatistics> for Value

Source§

fn from(stats: BStatistics) -> Value

Converts to this type from the input type.
Source§

impl From<BTreeMap<&str, Value>> for Value

Source§

fn from(v: BTreeMap<&str, Value>) -> Value

Converts to this type from the input type.
Source§

impl From<BTreeMap<String, Value>> for Value

Source§

fn from(v: BTreeMap<String, Value>) -> Value

Converts to this type from the input type.
Source§

impl From<Block> for Value

Source§

fn from(v: Block) -> Value

Converts to this type from the input type.
Source§

impl From<Box<Edges>> for Value

Source§

fn from(v: Box<Edges>) -> Value

Converts to this type from the input type.
Source§

impl From<Bytes> for Value

Source§

fn from(v: Bytes) -> Value

Converts to this type from the input type.
Source§

impl From<Cast> for Value

Source§

fn from(v: Cast) -> Value

Converts to this type from the input type.
Source§

impl From<Claims> for Value

Source§

fn from(v: Claims) -> Value

Converts to this type from the input type.
Source§

impl From<Closure> for Value

Source§

fn from(v: Closure) -> Value

Converts to this type from the input type.
Source§

impl From<Constant> for Value

Source§

fn from(v: Constant) -> Value

Converts to this type from the input type.
Source§

impl From<Data> for Value

Source§

fn from(val: Data) -> Value

Converts to this type from the input type.
Source§

impl From<DateTime<Utc>> for Value

Source§

fn from(v: DateTime<Utc>) -> Value

Converts to this type from the input type.
Source§

impl From<Datetime> for Value

Source§

fn from(v: Datetime) -> Value

Converts to this type from the input type.
Source§

impl From<Decimal> for Value

Source§

fn from(v: Decimal) -> Value

Converts to this type from the input type.
Source§

impl From<DefineTableStatement> for Value

Source§

fn from(v: DefineTableStatement) -> Value

Converts to this type from the input type.
Source§

impl From<Duration> for Value

Source§

fn from(value: Duration) -> Value

Converts to this type from the input type.
Source§

impl From<Duration> for Value

Source§

fn from(v: Duration) -> Value

Converts to this type from the input type.
Source§

impl From<Edges> for Value

Source§

fn from(v: Edges) -> Value

Converts to this type from the input type.
Source§

impl From<ExplainItem> for Value

Source§

fn from(i: ExplainItem) -> Value

Converts to this type from the input type.
Source§

impl From<Expression> for Value

Source§

fn from(v: Expression) -> Value

Converts to this type from the input type.
Source§

impl From<FtStatistics> for Value

Source§

fn from(stats: FtStatistics) -> Value

Converts to this type from the input type.
Source§

impl From<Function> for Value

Source§

fn from(v: Function) -> Value

Converts to this type from the input type.
Source§

impl From<Future> for Value

Source§

fn from(v: Future) -> Value

Converts to this type from the input type.
Source§

impl From<Geometry> for Value

Source§

fn from(v: Geometry) -> Value

Converts to this type from the input type.
Source§

impl From<HashMap<&str, Value>> for Value

Source§

fn from(v: HashMap<&str, Value>) -> Value

Converts to this type from the input type.
Source§

impl From<HashMap<String, Value>> for Value

Source§

fn from(v: HashMap<String, Value>) -> Value

Converts to this type from the input type.
Source§

impl From<Id> for Value

Source§

fn from(v: Id) -> Value

Converts to this type from the input type.
Source§

impl From<Idiom> for Value

Source§

fn from(v: Idiom) -> Value

Converts to this type from the input type.
Source§

impl From<Mock> for Value

Source§

fn from(v: Mock) -> Value

Converts to this type from the input type.
Source§

impl From<Model> for Value

Source§

fn from(v: Model) -> Value

Converts to this type from the input type.
Source§

impl From<MtStatistics> for Value

Source§

fn from(stats: MtStatistics) -> Value

Converts to this type from the input type.
Source§

impl From<Number> for Value

Source§

fn from(v: Number) -> Value

Converts to this type from the input type.
Source§

impl From<Object> for Value

Source§

fn from(v: Object) -> Value

Converts to this type from the input type.
Source§

impl From<Operation> for Value

Source§

fn from(v: Operation) -> Value

Converts to this type from the input type.
Source§

impl From<Option<Datetime>> for Value

Source§

fn from(v: Option<Datetime>) -> Value

Converts to this type from the input type.
Source§

impl From<Option<Duration>> for Value

Source§

fn from(v: Option<Duration>) -> Value

Converts to this type from the input type.
Source§

impl From<Option<String>> for Value

Source§

fn from(v: Option<String>) -> Value

Converts to this type from the input type.
Source§

impl From<Option<Value>> for Value

Source§

fn from(v: Option<Value>) -> Value

Converts to this type from the input type.
Source§

impl From<Option<i64>> for Value

Source§

fn from(v: Option<i64>) -> Value

Converts to this type from the input type.
Source§

impl From<Param> for Value

Source§

fn from(v: Param) -> Value

Converts to this type from the input type.
Source§

impl From<Point> for Value

Source§

fn from(v: Point) -> Value

Converts to this type from the input type.
Source§

impl From<Query> for Value

Source§

fn from(q: Query) -> Value

Converts to this type from the input type.
Source§

impl From<Range> for Value

Source§

fn from(v: Range) -> Value

Converts to this type from the input type.
Source§

impl From<Regex> for Value

Source§

fn from(v: Regex) -> Value

Converts to this type from the input type.
Source§

impl From<Resource> for Value

Source§

fn from(resource: Resource) -> Self

Converts to this type from the input type.
Source§

impl From<Strand> for Value

Source§

fn from(v: Strand) -> Value

Converts to this type from the input type.
Source§

impl From<String> for Value

Source§

fn from(v: String) -> Value

Converts to this type from the input type.
Source§

impl From<Subquery> for Value

Source§

fn from(v: Subquery) -> Value

Converts to this type from the input type.
Source§

impl From<Table> for Value

Source§

fn from(v: Table) -> Value

Converts to this type from the input type.
Source§

impl From<Thing> for Value

Source§

fn from(v: Thing) -> Value

Converts to this type from the input type.
Source§

impl From<Uuid> for Value

Source§

fn from(v: Uuid) -> Value

Converts to this type from the input type.
Source§

impl From<Uuid> for Value

Source§

fn from(v: Uuid) -> Value

Converts to this type from the input type.
Source§

impl From<Value> for Array

Source§

fn from(v: Value) -> Array

Converts to this type from the input type.
Source§

impl From<Value> for Block

Source§

fn from(v: Value) -> Block

Converts to this type from the input type.
Source§

impl From<Value> for Fetch

Source§

fn from(value: Value) -> Fetch

Converts to this type from the input type.
Source§

impl From<Value> for Future

Source§

fn from(v: Value) -> Future

Converts to this type from the input type.
Source§

impl From<Value> for Vec<u8>

Source§

fn from(v: Value) -> Vec<u8>

Converts to this type from the input type.
Source§

impl From<Vec<&str>> for Value

Source§

fn from(v: Vec<&str>) -> Value

Converts to this type from the input type.
Source§

impl From<Vec<Number>> for Value

Source§

fn from(v: Vec<Number>) -> Value

Converts to this type from the input type.
Source§

impl From<Vec<Operation>> for Value

Source§

fn from(v: Vec<Operation>) -> Value

Converts to this type from the input type.
Source§

impl From<Vec<String>> for Value

Source§

fn from(v: Vec<String>) -> Value

Converts to this type from the input type.
Source§

impl From<Vec<Value>> for Value

Source§

fn from(v: Vec<Value>) -> Value

Converts to this type from the input type.
Source§

impl From<Vec<bool>> for Value

Source§

fn from(v: Vec<bool>) -> Value

Converts to this type from the input type.
Source§

impl From<Vec<i32>> for Value

Source§

fn from(v: Vec<i32>) -> Value

Converts to this type from the input type.
Source§

impl From<Vec<u8>> for Value

Source§

fn from(v: Vec<u8>) -> Value

Converts to this type from the input type.
Source§

impl From<bool> for Value

Source§

fn from(v: bool) -> Value

Converts to this type from the input type.
Source§

impl From<f32> for Value

Source§

fn from(v: f32) -> Value

Converts to this type from the input type.
Source§

impl From<f64> for Value

Source§

fn from(v: f64) -> Value

Converts to this type from the input type.
Source§

impl From<i128> for Value

Source§

fn from(v: i128) -> Value

Converts to this type from the input type.
Source§

impl From<i16> for Value

Source§

fn from(v: i16) -> Value

Converts to this type from the input type.
Source§

impl From<i32> for Value

Source§

fn from(v: i32) -> Value

Converts to this type from the input type.
Source§

impl From<i64> for Value

Source§

fn from(v: i64) -> Value

Converts to this type from the input type.
Source§

impl From<i8> for Value

Source§

fn from(v: i8) -> Value

Converts to this type from the input type.
Source§

impl From<isize> for Value

Source§

fn from(v: isize) -> Value

Converts to this type from the input type.
Source§

impl From<u128> for Value

Source§

fn from(v: u128) -> Value

Converts to this type from the input type.
Source§

impl From<u16> for Value

Source§

fn from(v: u16) -> Value

Converts to this type from the input type.
Source§

impl From<u32> for Value

Source§

fn from(v: u32) -> Value

Converts to this type from the input type.
Source§

impl From<u64> for Value

Source§

fn from(v: u64) -> Value

Converts to this type from the input type.
Source§

impl From<u8> for Value

Source§

fn from(v: u8) -> Value

Converts to this type from the input type.
Source§

impl From<usize> for Value

Source§

fn from(v: usize) -> Value

Converts to this type from the input type.
Source§

impl FromIterator<(String, Value)> for Value

Source§

fn from_iter<I>(iter: I) -> Value
where I: IntoIterator<Item = (String, Value)>,

Creates a value from an iterator. Read more
Source§

impl FromIterator<Value> for Array

Source§

fn from_iter<I>(iter: I) -> Array
where I: IntoIterator<Item = Value>,

Creates a value from an iterator. Read more
Source§

impl FromIterator<Value> for Value

Source§

fn from_iter<I>(iter: I) -> Value
where I: IntoIterator<Item = Value>,

Creates a value from an iterator. Read more
Source§

impl<'js> FromJs<'js> for Value

Source§

fn from_js(ctx: &Ctx<'js>, val: Value<'js>) -> Result<Value, Error>

Source§

impl Hash for Value

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<'js> IntoJs<'js> for &Value

Source§

fn into_js(self, ctx: &Ctx<'js>) -> Result<Value<'js>, Error>

Source§

impl<'js> IntoJs<'js> for Value

Source§

fn into_js(self, ctx: &Ctx<'js>) -> Result<Value<'js>, Error>

Source§

impl IntoResource<Value> for Resource

Source§

fn into_resource(self) -> Result<Resource>

Converts an input into a database resource
Source§

impl Ord for Value

Source§

fn cmp(&self, other: &Value) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Value

Source§

fn eq(&self, other: &Value) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Value

Source§

fn partial_cmp(&self, other: &Value) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl QueryResult<Value> for &str

Source§

fn query_result(self, response: &mut QueryResponse) -> Result<Value>

Extracts and deserializes a query result from a query response
Source§

fn stats(&self, response: &QueryResponse) -> Option<Stats>

Extracts the statistics from a query response
Source§

impl QueryResult<Value> for (usize, &str)

Source§

fn query_result(self, response: &mut QueryResponse) -> Result<Value>

Extracts and deserializes a query result from a query response
Source§

fn stats(&self, response: &QueryResponse) -> Option<Stats>

Extracts the statistics from a query response
Source§

impl QueryResult<Value> for usize

Source§

fn query_result(self, response: &mut QueryResponse) -> Result<Value>

Extracts and deserializes a query result from a query response
Source§

fn stats(&self, response: &QueryResponse) -> Option<Stats>

Extracts the statistics from a query response
Source§

impl QueryStream<Value> for ()

Source§

fn query_stream( self, response: &mut QueryResponse, ) -> Result<QueryStream<Value>>

Retrieves the query stream future
Source§

impl QueryStream<Value> for usize

Source§

fn query_stream( self, response: &mut QueryResponse, ) -> Result<QueryStream<Value>>

Retrieves the query stream future
Source§

impl Revisioned for Value

Source§

fn revision() -> u16

Returns the current revision of this type.

Source§

fn serialize_revisioned<W>(&self, writer: &mut W) -> Result<(), Error>
where W: Write,

Serializes the struct using the specficifed writer.

Source§

fn deserialize_revisioned<R>(reader: &mut R) -> Result<Value, Error>
where R: Read,

Deserializes a new instance of the struct from the specficifed reader.

Source§

fn type_id() -> TypeId
where Self: 'static,

Returns the type id of this type.
Source§

impl Serialize for Value

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Sub<Value> for Array

Source§

type Output = Array

The resulting type after applying the - operator.
Source§

fn sub(self, other: Value) -> Array

Performs the - operation. Read more
Source§

impl TryFrom<&Value> for Number

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(value: &Value) -> Result<Number, <Number as TryFrom<&Value>>::Error>

Performs the conversion.
Source§

impl TryFrom<&Value> for Vec<Number>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( val: &Value, ) -> Result<Vec<Number>, <Vec<Number> as TryFrom<&Value>>::Error>

Performs the conversion.
Source§

impl TryFrom<(Cow<'static, str>, Value<'static>)> for Value

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( _: (Cow<'static, str>, Value<'static>), ) -> Result<Value, <Value as TryFrom<(Cow<'static, str>, Value<'static>)>>::Error>

Performs the conversion.
Source§

impl TryFrom<Cbor> for Value

Source§

type Error = &'static str

The type returned in the event of a conversion error.
Source§

fn try_from(val: Cbor) -> Result<Value, &'static str>

Performs the conversion.
Source§

impl TryFrom<Highlighter> for Value

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(hl: Highlighter) -> Result<Value, Error>

Performs the conversion.
Source§

impl TryFrom<Offseter> for Value

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(or: Offseter) -> Result<Value, Error>

Performs the conversion.
Source§

impl TryFrom<Pack> for Value

Source§

type Error = &'static str

The type returned in the event of a conversion error.
Source§

fn try_from(val: Pack) -> Result<Value, &'static str>

Performs the conversion.
Source§

impl TryFrom<Tokens> for Value

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(tokens: Tokens) -> Result<Value, Error>

Performs the conversion.
Source§

impl TryFrom<Value<'static>> for Value

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( content: Value<'static>, ) -> Result<Value, <Value as TryFrom<Value<'static>>>::Error>

Performs the conversion.
Source§

impl TryFrom<Value> for DateTime<Utc>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( value: Value, ) -> Result<DateTime<Utc>, <DateTime<Utc> as TryFrom<Value>>::Error>

Performs the conversion.
Source§

impl TryFrom<Value> for Datetime

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( value: Value, ) -> Result<Datetime, <Datetime as TryFrom<Value>>::Error>

Performs the conversion.
Source§

impl TryFrom<Value> for Duration

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( value: Value, ) -> Result<Duration, <Duration as TryFrom<Value>>::Error>

Performs the conversion.
Source§

impl TryFrom<Value> for Number

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(value: Value) -> Result<Number, <Number as TryFrom<Value>>::Error>

Performs the conversion.
Source§

impl TryFrom<Value> for Object

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(value: Value) -> Result<Object, <Object as TryFrom<Value>>::Error>

Performs the conversion.
Source§

impl TryFrom<Value> for String

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(value: Value) -> Result<String, <String as TryFrom<Value>>::Error>

Performs the conversion.
Source§

impl TryFrom<Value> for Uuid

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(value: Value) -> Result<Uuid, <Uuid as TryFrom<Value>>::Error>

Performs the conversion.
Source§

impl TryFrom<Value> for Vec<Number>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( val: Value, ) -> Result<Vec<Number>, <Vec<Number> as TryFrom<Value>>::Error>

Performs the conversion.
Source§

impl TryFrom<Value> for Vec<Value>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( value: Value, ) -> Result<Vec<Value>, <Vec<Value> as TryFrom<Value>>::Error>

Performs the conversion.
Source§

impl TryFrom<Vec<(Cow<'static, str>, Value<'static>)>> for Value

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( v: Vec<(Cow<'static, str>, Value<'static>)>, ) -> Result<Value, <Value as TryFrom<Vec<(Cow<'static, str>, Value<'static>)>>>::Error>

Performs the conversion.
Source§

impl TryFrom<Vec<(Value<'static>, Value<'static>)>> for Value

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( v: Vec<(Value<'static>, Value<'static>)>, ) -> Result<Value, <Value as TryFrom<Vec<(Value<'static>, Value<'static>)>>>::Error>

Performs the conversion.
Source§

impl TryFrom<Vec<Value<'static>>> for Value

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( v: Vec<Value<'static>>, ) -> Result<Value, <Value as TryFrom<Vec<Value<'static>>>>::Error>

Performs the conversion.
Source§

impl Eq for Value

Source§

impl StructuralPartialEq for Value

Auto Trait Implementations§

§

impl Freeze for Value

§

impl RefUnwindSafe for Value

§

impl Send for Value

§

impl Sync for Value

§

impl Unpin for Value

§

impl UnwindSafe for Value

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<'js, T> AsProperty<'js, T> for T
where T: IntoJs<'js>,

Source§

fn config( self, ctx: &Ctx<'js>, ) -> Result<(i32, Value<'js>, Value<'js>, Value<'js>), Error>

Property configuration Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<'js, T> FromParam<'js> for T
where T: FromJs<'js>,

Source§

fn param_requirement() -> ParamRequirement

The parameters requirements this value requires.
Source§

fn from_param<'a>(params: &mut ParamsAccessor<'a, 'js>) -> Result<T, Error>

Convert from a parameter value.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<'js, T> IntoArg<'js> for T
where T: IntoJs<'js>,

Source§

fn num_args(&self) -> usize

The number of arguments this value produces.
Source§

fn into_arg(self, args: &mut Args<'js>) -> Result<(), Error>

Convert the value into an argument.
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToSmolStr for T
where T: Display + ?Sized,

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<G1, G2> Within<G2> for G1
where G2: Contains<G1>,

Source§

fn is_within(&self, b: &G2) -> bool

Source§

impl<G1, G2> Within<G2> for G1
where G2: Contains<G1>,

Source§

fn is_within(&self, b: &G2) -> bool

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ParallelSend for T
where T: Send,