pub struct KtClientGen<'a>(pub &'a ProgramManifest);Expand description
Generates all Kotlin client files for a program.
Output format uses file markers like the TypeScript generator:
=== Types.kt ===
<contents>
=== Accounts.kt ===
<contents>
=== Instructions.kt ===
<contents>
=== Events.kt ===
<contents>Tuple Fields§
§0: &'a ProgramManifestTrait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for KtClientGen<'a>
impl<'a> RefUnwindSafe for KtClientGen<'a>
impl<'a> Send for KtClientGen<'a>
impl<'a> Sync for KtClientGen<'a>
impl<'a> Unpin for KtClientGen<'a>
impl<'a> UnsafeUnpin for KtClientGen<'a>
impl<'a> UnwindSafe for KtClientGen<'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