pub enum Special {
Getter(Getter),
Setter(Setter),
Deleter(Deleter),
LegacyCaller(LegacyCaller),
}
Expand description
Parses one of the special keyword getter|setter|deleter
Variants§
Trait Implementations§
Source§impl From<LegacyCaller> for Special
impl From<LegacyCaller> for Special
Source§fn from(x: LegacyCaller) -> Self
fn from(x: LegacyCaller) -> Self
Converts to this type from the input type.
Source§impl Ord for Special
impl Ord for Special
Source§impl PartialOrd for Special
impl PartialOrd for Special
impl Copy for Special
impl Eq for Special
impl StructuralPartialEq for Special
Auto Trait Implementations§
impl Freeze for Special
impl RefUnwindSafe for Special
impl Send for Special
impl Sync for Special
impl Unpin for Special
impl UnwindSafe for Special
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