pub struct CodegenResource<'a> { /* private fields */ }Expand description
Generates a feature-gated impl Client block for a resource,
with all its operations.
Implementations§
Source§impl<'a> CodegenResource<'a>
impl<'a> CodegenResource<'a>
pub fn new(resource: &'a str, operations: &'a [IrOperationView<'a>]) -> Self
Trait Implementations§
Source§impl IntoCode for CodegenResource<'_>
impl IntoCode for CodegenResource<'_>
Source§impl ToTokens for CodegenResource<'_>
impl ToTokens for CodegenResource<'_>
Source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
Auto Trait Implementations§
impl<'a> Freeze for CodegenResource<'a>
impl<'a> !RefUnwindSafe for CodegenResource<'a>
impl<'a> Send for CodegenResource<'a>
impl<'a> Sync for CodegenResource<'a>
impl<'a> Unpin for CodegenResource<'a>
impl<'a> !UnwindSafe for CodegenResource<'a>
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Spanned for Twhere
T: Spanned + ?Sized,
impl<T> Spanned for Twhere
T: Spanned + ?Sized,
Source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span covering the complete contents of this syntax tree
node, or Span::call_site() if this node is empty.