pub enum SetterStyle {
Ref,
Move,
Into,
TryInto,
}
Variants§
Trait Implementations§
Source§impl Clone for SetterStyle
impl Clone for SetterStyle
Source§fn clone(&self) -> SetterStyle
fn clone(&self) -> SetterStyle
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for SetterStyle
impl Default for SetterStyle
Source§fn default() -> SetterStyle
fn default() -> SetterStyle
Returns the “default value” for a type. Read more
Source§impl FromMeta for SetterStyle
impl FromMeta for SetterStyle
Source§fn from_list(__outer: &[NestedMeta]) -> Result<Self>
fn from_list(__outer: &[NestedMeta]) -> Result<Self>
Create an instance from a list of nested meta items.
Source§fn from_string(lit: &str) -> Result<Self>
fn from_string(lit: &str) -> Result<Self>
Create an instance from a string literal in a value position.
fn from_nested_meta(item: &NestedMeta) -> Result<Self, Error>
Source§fn from_meta(item: &Meta) -> Result<Self, Error>
fn from_meta(item: &Meta) -> Result<Self, Error>
Create an instance from a
syn::Meta
by dispatching to the format-appropriate
trait function. This generally should not be overridden by implementers. Read moreSource§fn from_none() -> Option<Self>
fn from_none() -> Option<Self>
When a field is omitted from a parent meta-item,
from_none
is used to attempt
recovery before a missing field error is generated. Read moreSource§fn from_word() -> Result<Self, Error>
fn from_word() -> Result<Self, Error>
Create an instance from the presence of the word in the attribute with no
additional options specified.
Source§fn from_value(value: &Lit) -> Result<Self, Error>
fn from_value(value: &Lit) -> Result<Self, Error>
Create an instance from a literal value of either
foo = "bar"
or foo("bar")
.
This dispatches to the appropriate method based on the type of literal encountered,
and generally should not be overridden by implementers. Read moreimpl Copy for SetterStyle
Auto Trait Implementations§
impl Freeze for SetterStyle
impl RefUnwindSafe for SetterStyle
impl Send for SetterStyle
impl Sync for SetterStyle
impl Unpin for SetterStyle
impl UnwindSafe for SetterStyle
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