Struct proc_macro::Ident

1.29.0 · source ·
pub struct Ident(_);
Expand description

标识符 (ident)。

Implementations§

source§

impl Ident

source

pub fn new(string: &str, span: Span) -> Ident

使用给定的 string 和指定的 span 创建新的 Identstring 参数必须是该语言允许的有效标识符 (包括关键字,例如 selffn)。否则,函数将为 panic。

请注意,当前位于 rustc 中的 span 为此标识符配置了卫生信息。

截止到目前,Span::call_site() 明确选择采用 “call-site” 卫生标准,这意味着使用该跨度创建的标识符将被解析,就好像它们直接写在宏调用的位置一样,并且宏调用站点上的其他代码将能够引用他们也是。

以后的跨度 (例如 Span::def_site()) 将允许选择使用 “definition-site” 卫生,这意味着用该跨度创建的标识符将在宏定义的位置解析,而宏调用站点上的其他代码将无法引用它们。

由于当前对卫生的重要性,与其他 tokens 不同,该构造函数需要在构造时指定 Span

1.47.0 · source

pub fn new_raw(string: &str, span: Span) -> Ident

Ident::new 相同,但创建原始标识符 (r#ident)。 string 参数是该语言允许的有效标识符 (包括关键字,例如 fn)。 在路径段中可用的关键字 (例如, selfsuper) 不受支持,会导致 panic。

source

pub fn span(&self) -> Span

返回此 Ident 的跨度,包括 to_string 返回的整个字符串。

source

pub fn set_span(&mut self, span: Span)

配置此 Ident 的跨度,可能会更改其卫生状况。

Trait Implementations§

source§

impl Clone for Ident

source§

fn clone(&self) -> Ident

返回值的副本。 Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

source 执行复制分配。 Read more
source§

impl Debug for Ident

source§

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

使用给定的格式化程序格式化该值。 Read more
source§

impl Display for Ident

将标识符打印为字符串,该字符串应可以无损地转换回相同的标识符。

source§

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

使用给定的格式化程序格式化该值。 Read more
source§

impl From<Ident> for TokenTree

source§

fn from(g: Ident) -> TokenTree

从输入类型转换为此类型。
source§

impl ToString for Ident

将标识符转换为应该可以无损转换回相同标识符的字符串。

source§

fn to_string(&self) -> String

将给定值转换为 StringRead more

Auto Trait Implementations§

§

impl RefUnwindSafe for Ident

§

impl !Send for Ident

§

impl !Sync for Ident

§

impl Unpin for Ident

§

impl UnwindSafe for Ident

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

从拥有的值中借用。 Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

获得所有权后的结果类型。
source§

fn to_owned(&self) -> T

从借用的数据创建拥有的数据,通常是通过克隆。 Read more
source§

fn clone_into(&self, target: &mut T)

使用借来的数据来替换拥有的数据,通常是通过克隆。 Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

将给定值转换为 StringRead more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

发生转换错误时返回的类型。
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

执行转换。
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

发生转换错误时返回的类型。
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

执行转换。