pub struct FieldSetterOptions {
pub rename: Option<Ident>,
pub style: Option<SetterStyle>,
pub attrs: Option<Attributes>,
pub ignore: bool,
pub compile_time: bool,
pub vis: Option<Visibility>,
pub bound: FnGenerics,
}
Fields§
§rename: Option<Ident>
§style: Option<SetterStyle>
§attrs: Option<Attributes>
§ignore: bool
§compile_time: bool
§vis: Option<Visibility>
§bound: FnGenerics
Trait Implementations§
Source§impl Default for FieldSetterOptions
impl Default for FieldSetterOptions
Source§fn default() -> FieldSetterOptions
fn default() -> FieldSetterOptions
Returns the “default value” for a type. Read more
Source§impl FromMeta for FieldSetterOptions
impl FromMeta for FieldSetterOptions
Source§fn from_list(__items: &[NestedMeta]) -> Result<Self>
fn from_list(__items: &[NestedMeta]) -> Result<Self>
Create an instance from a list of nested meta items.
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 moreSource§fn from_char(value: char) -> Result<Self, Error>
fn from_char(value: char) -> Result<Self, Error>
Create an instance from a char literal in a value position.
Auto Trait Implementations§
impl Freeze for FieldSetterOptions
impl RefUnwindSafe for FieldSetterOptions
impl !Send for FieldSetterOptions
impl !Sync for FieldSetterOptions
impl Unpin for FieldSetterOptions
impl UnwindSafe for FieldSetterOptions
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