Struct starlark::values::none::NoneType

source ·
pub struct NoneType;
Expand description

Define the None type, use NoneType in Rust.

Implementations§

source§

impl NoneType

source

pub const TYPE: &'static str = "NoneType"

The result of type(None).

Trait Implementations§

source§

impl AllocFrozenValue for NoneType

source§

fn alloc_frozen_value(self, _heap: &FrozenHeap) -> FrozenValue

Allocate a value in the frozen heap and return a reference to the allocated value.
source§

impl<'v> AllocValue<'v> for NoneType

source§

fn alloc_value(self, _heap: &'v Heap) -> Value<'v>

Allocate the value on a heap and return a reference to the allocated value. Read more
source§

impl Allocative for NoneType

source§

fn visit<'allocative_a, 'allocative_b: 'allocative_a>( &self, visitor: &'allocative_a mut Visitor<'allocative_b> )

source§

impl Clone for NoneType

source§

fn clone(&self) -> NoneType

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 NoneType

source§

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

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

impl Display for NoneType

source§

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

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

impl Dupe for NoneType

source§

fn dupe(&self) -> Self

source§

impl<'pst> ProvidesStaticType<'pst> for NoneType

§

type StaticType = NoneType

Same type as Self but with lifetimes dropped to 'static. Read more
source§

impl Serialize for NoneType

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

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

impl<'v> StarlarkValue<'v> for NoneType

Define the NoneType type

source§

const TYPE: &'static str = NoneType::TYPE

Return a string describing the type of self, as returned by the type() function. Read more
source§

fn get_type_value_static() -> FrozenStringValue

Like TYPE, but returns a reusable FrozenStringValue pointer to it. This function deliberately doesn’t take a heap, as it would not be performant to allocate a new value each time. Read more
source§

fn attr_ty(_attr: &str) -> Option<Ty>

Attribute type, for the typechecker. Read more
source§

fn bit_or(&self, other: Value<'v>, heap: &'v Heap) -> Result<Value<'v>>

Bitwise | operator. Read more
source§

fn bin_op_ty(op: TypingBinOp, _rhs: &TyBasic) -> Option<Ty>

Typecheck this op rhs.
§

type Canonical = NoneType

Two implementations of StarlarkValue are considered to have the same type, if Canonical field points to the same type. Read more
source§

fn equals(&self, other: Value<'_>) -> Result<bool>

Compare self with other for equality. Should only return an error on excessive recursion. Read more
source§

fn to_bool(&self) -> bool

Convert self to a boolean, as returned by the bool() function. The default implementation returns true.
source§

fn write_hash(&self, hasher: &mut StarlarkHasher) -> Result<()>

Return a hash data for self to be used when self is placed as a key in a Dict. Return an Err if there is no hash for this value (e.g. list). Must be stable between frozen and non-frozen values.
source§

fn get_type_starlark_repr() -> Ty

Return a string that is the representation of a type that a user would use in type annotations. This often will be the same as Self::TYPE, but in some instances it might be slightly different than what is returned by TYPE. Read more
source§

fn typechecker_ty(&self) -> Option<Ty>

Type of this instance for typechecker. Note this can be more precise than generic type.
source§

fn matches_type(&self, ty: &str) -> bool

Is this value a match for a named type. Usually returns true for values matching get_type, but might also work for subtypes it implements.
source§

fn get_methods() -> Option<&'static Methods>
where Self: Sized,

Get the members associated with this type, accessible via this_type.x. These members will have dir/getattr/hasattr properly implemented, so it is the preferred way to go if possible. See MethodsStatic for an example of how to define this method.
source§

fn documentation(&self) -> Option<DocItem>
where Self: Sized,

Return structured documentation for self, if available.
source§

fn collect_repr(&self, collector: &mut String)

Return a string representation of self, as returned by the repr() function. Defaults to the Display instance - which should be fine for nearly all types. In many cases the repr() representation will also be a Starlark expression for creating the value. Read more
source§

fn collect_repr_cycle(&self, collector: &mut String)

Invoked to print repr when a cycle is the object stack is detected.
source§

fn name_for_call_stack(&self, me: Value<'v>) -> String

String used when printing call stack. repr(self) by default.
source§

fn compare(&self, other: Value<'v>) -> Result<Ordering>

Compare self with other. This method returns a result of type Ordering, or an Err if the two types differ.
source§

fn invoke( &self, _me: Value<'v>, _args: &Arguments<'v, '_>, _eval: &mut Evaluator<'v, '_> ) -> Result<Value<'v>>

Directly invoke a function. The number of named and names arguments are guaranteed to be equal. Read more
source§

fn at(&self, index: Value<'v>, _heap: &'v Heap) -> Result<Value<'v>>

Return the result of a[index] if a is indexable.
source§

fn at2( &self, _index0: Value<'v>, _index1: Value<'v>, _heap: &'v Heap, _private: Private ) -> Result<Value<'v>>

Return the result of a[index0, index1] if a is indexable by two parameters.
source§

fn slice( &self, _start: Option<Value<'v>>, _stop: Option<Value<'v>>, _stride: Option<Value<'v>>, _heap: &'v Heap ) -> Result<Value<'v>>

Extract a slice of the underlying object if the object is indexable. The result will be object between start and stop (both of them are added length() if negative and then clamped between 0 and length()). stride indicates the direction. Read more
source§

fn iterate_collect(&self, _heap: &'v Heap) -> Result<Vec<Value<'v>>>

Implement iteration over the value of this container by providing the values in a Vec.
source§

unsafe fn iterate(&self, _me: Value<'v>, heap: &'v Heap) -> Result<Value<'v>>

Returns an iterator over the value of this container if this value holds an iterable container. Read more
source§

unsafe fn iter_size_hint(&self, _index: usize) -> (usize, Option<usize>)

Returns the size hint for the iterator.
source§

unsafe fn iter_next(&self, _index: usize, _heap: &'v Heap) -> Option<Value<'v>>

Yield the next value from the iterator. Read more
source§

unsafe fn iter_stop(&self)

Indicate that the iteration is finished. Read more
source§

fn length(&self) -> Result<i32>

Returns the length of the value, if this value is a sequence.
source§

fn get_attr(&self, _attribute: &str, _heap: &'v Heap) -> Option<Value<'v>>

Get an attribute for the current value as would be returned by dotted expression (i.e. a.attribute). Read more
source§

fn get_attr_hashed( &self, attribute: Hashed<&str>, heap: &'v Heap ) -> Option<Value<'v>>

A version of get_attr which takes BorrowHashed<str> instead of &str, thus implementation may reuse the hash of the string if this is called repeatedly with the same string. Read more
source§

fn has_attr(&self, attribute: &str, heap: &'v Heap) -> bool

Return true if an attribute of name attribute exists for the current value. Read more
source§

fn dir_attr(&self) -> Vec<String>

Return a vector of string listing all attribute of the current value. Read more
source§

fn is_in(&self, other: Value<'v>) -> Result<bool>

Tell whether other is in the current value, if it is a container. Read more
source§

fn plus(&self, _heap: &'v Heap) -> Result<Value<'v>>

Apply the + unary operator to the current value. Read more
source§

fn minus(&self, _heap: &'v Heap) -> Result<Value<'v>>

Apply the - unary operator to the current value. Read more
source§

fn radd(&self, _lhs: Value<'v>, _heap: &'v Heap) -> Option<Result<Value<'v>>>

Add with the arguments the other way around. Should return None to fall through to normal add.
source§

fn add(&self, _rhs: Value<'v>, _heap: &'v Heap) -> Option<Result<Value<'v>>>

Add other to the current value. Pass both self and the Value form of self as original. Read more
source§

fn sub(&self, other: Value<'v>, _heap: &'v Heap) -> Result<Value<'v>>

Subtract other from the current value. Read more
source§

fn rmul(&self, lhs: Value<'v>, heap: &'v Heap) -> Option<Result<Value<'v>>>

Called on rhs of lhs * rhs when lhs.mul returns None.
source§

fn mul(&self, _rhs: Value<'v>, _heap: &'v Heap) -> Option<Result<Value<'v>>>

Multiply the current value with other. Read more
source§

fn div(&self, other: Value<'v>, _heap: &'v Heap) -> Result<Value<'v>>

Divide the current value by other. Always results in a float value. Read more
source§

fn percent(&self, other: Value<'v>, _heap: &'v Heap) -> Result<Value<'v>>

Apply the percent operator between the current value and other. Usually used on strings, as per the Starlark spec. Read more
source§

fn floor_div(&self, other: Value<'v>, _heap: &'v Heap) -> Result<Value<'v>>

Floor division between the current value and other. Read more
source§

fn bit_and(&self, other: Value<'v>, _heap: &'v Heap) -> Result<Value<'v>>

Bitwise & operator.
source§

fn bit_xor(&self, other: Value<'v>, _heap: &'v Heap) -> Result<Value<'v>>

Bitwise ^ operator.
source§

fn bit_not(&self, _heap: &'v Heap) -> Result<Value<'v>>

Bitwise ~ operator.
source§

fn left_shift(&self, other: Value<'v>, _heap: &'v Heap) -> Result<Value<'v>>

Bitwise << operator.
source§

fn right_shift(&self, other: Value<'v>, _heap: &'v Heap) -> Result<Value<'v>>

Bitwise >> operator.
source§

fn rbin_op_ty(_lhs: &TyBasic, _op: TypingBinOp) -> Option<Ty>

Typecheck lhs op this.
source§

fn export_as( &self, _variable_name: &str, _eval: &mut Evaluator<'v, '_> ) -> Result<()>

Called when exporting a value under a specific name,
source§

fn set_at(&self, _index: Value<'v>, _new_value: Value<'v>) -> Result<()>

Set the value at index with the new value. Read more
source§

fn set_attr(&self, attribute: &str, _new_value: Value<'v>) -> Result<()>

Set the attribute named attribute of the current value to value (e.g. a.attribute = value).
source§

fn provide(&'v self, demand: &mut Demand<'_, 'v>)

Dynamically provide values based on type. Read more
source§

impl<'v> UnpackValue<'v> for NoneType

source§

fn unpack_value(value: Value<'v>) -> Option<Self>

Given a Value, try and unpack it into the given type, which may involve some element of conversion.
source§

fn expected() -> String

Description of values acceptable by unpack_value, e. g. list or str.
source§

fn unpack_value_err(value: Value<'v>) -> Result<Self>

Unpack a value, but return error instead of None if unpacking fails.
source§

fn unpack_param(value: Value<'v>) -> Result<Self>

Unpack value, but instead of None return error about incorrect argument type.
source§

fn unpack_named_param(value: Value<'v>, param_name: &str) -> Result<Self>

Unpack value, but instead of None return error about incorrect named argument type.

Auto Trait Implementations§

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<'a, T> AnyLifetime<'a> for T
where T: ProvidesStaticType<'a> + 'a + ?Sized,

source§

fn static_type_id() -> TypeId

Must return the TypeId of Self but where the lifetimes are changed to 'static. Must be consistent with static_type_of.
source§

fn static_type_of(&self) -> TypeId

Must return the TypeId of Self but where the lifetimes are changed to 'static. Must be consistent with static_type_id. Must not consult the self parameter in any way.
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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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<T> Serialize for T
where T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>

source§

impl<'v, T> StarlarkTypeRepr for T
where T: StarlarkValue<'v> + ?Sized,

source§

fn starlark_type_repr() -> Ty

The representation of a type that a user would use verbatim in starlark type annotations
source§

impl<T> ToAst for T

source§

fn ast(self, begin: usize, end: usize) -> Spanned<Self>

source§

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

§

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> ToString for T
where T: Display + ?Sized,

source§

default 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>,

§

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>,

§

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.