Struct re_types_builder::RustCodeGenerator
source · pub struct RustCodeGenerator {
pub workspace_path: Utf8PathBuf,
}Fields§
§workspace_path: Utf8PathBufImplementations§
source§impl RustCodeGenerator
impl RustCodeGenerator
pub fn new(workspace_path: impl Into<Utf8PathBuf>) -> Self
Trait Implementations§
source§impl CodeGenerator for RustCodeGenerator
impl CodeGenerator for RustCodeGenerator
source§fn generate(
&mut self,
reporter: &Reporter,
objects: &Objects,
arrow_registry: &ArrowRegistry
) -> BTreeMap<Utf8PathBuf, String>
fn generate( &mut self, reporter: &Reporter, objects: &Objects, arrow_registry: &ArrowRegistry ) -> BTreeMap<Utf8PathBuf, String>
Generates user-facing code from
crate::Objects. Read moreAuto Trait Implementations§
impl Freeze for RustCodeGenerator
impl RefUnwindSafe for RustCodeGenerator
impl Send for RustCodeGenerator
impl Sync for RustCodeGenerator
impl Unpin for RustCodeGenerator
impl UnwindSafe for RustCodeGenerator
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 more