pub struct KRenameAll(/* private fields */);Expand description
The “rename_all” keyword.
Matches: rename_all,
Implementations§
Trait Implementations§
Source§impl AsRef<Ident> for KRenameAll
impl AsRef<Ident> for KRenameAll
Source§impl AsRef<str> for KRenameAll
impl AsRef<str> for KRenameAll
Source§impl Clone for KRenameAll
impl Clone for KRenameAll
Source§fn clone(&self) -> KRenameAll
fn clone(&self) -> KRenameAll
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for KRenameAll
impl Debug for KRenameAll
Source§impl Default for KRenameAll
impl Default for KRenameAll
Source§impl Parser for KRenameAll
impl Parser for KRenameAll
Source§impl PartialEq for KRenameAll
impl PartialEq for KRenameAll
Source§impl ToTokens for KRenameAll
impl ToTokens for KRenameAll
Source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Source§fn into_token_iter(self) -> TokenIter ⓘwhere
Self: Sized,
fn into_token_iter(self) -> TokenIter ⓘwhere
Self: Sized,
Convert
self into a TokenIter object.Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Convert
&self into a TokenStream object.Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
Convert
self into a TokenStream object.impl Eq for KRenameAll
impl StructuralPartialEq for KRenameAll
Auto Trait Implementations§
impl Freeze for KRenameAll
impl RefUnwindSafe for KRenameAll
impl !Send for KRenameAll
impl !Sync for KRenameAll
impl Unpin for KRenameAll
impl UnwindSafe for KRenameAll
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DynamicTokens for T
impl<T> DynamicTokens for T
Source§impl<T> Parse for Twhere
T: Parser,
impl<T> Parse for Twhere
T: Parser,
Source§fn parse(tokens: &mut TokenIter) -> Result<Self, Error>
fn parse(tokens: &mut TokenIter) -> Result<Self, Error>
This is the user facing API to parse grammatical entities. Calls a
parser() within a
transaction. Commits changes on success and returns the parsed value. Read more