pub struct MacroResult {
pub runtime_patches: Vec<Patch>,
pub type_patches: Vec<Patch>,
pub diagnostics: Vec<Diagnostic>,
pub tokens: Option<String>,
pub debug: Option<String>,
}Fields§
§runtime_patches: Vec<Patch>Patches to apply to the runtime JS/TS code
type_patches: Vec<Patch>Patches to apply to the .d.ts type declarations
diagnostics: Vec<Diagnostic>Diagnostic messages (errors, warnings, info)
tokens: Option<String>Optional raw token stream (source code) returned by the macro
debug: Option<String>Optional debug information for development
Trait Implementations§
Source§impl Clone for MacroResult
impl Clone for MacroResult
Source§fn clone(&self) -> MacroResult
fn clone(&self) -> MacroResult
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 MacroResult
impl Debug for MacroResult
Source§impl Default for MacroResult
impl Default for MacroResult
Source§fn default() -> MacroResult
fn default() -> MacroResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MacroResult
impl<'de> Deserialize<'de> for MacroResult
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MacroResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MacroResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<MacroforgeError> for MacroResult
impl From<MacroforgeError> for MacroResult
Source§fn from(err: MacroforgeError) -> MacroResult
fn from(err: MacroforgeError) -> MacroResult
Converts to this type from the input type.
Source§impl Serialize for MacroResult
impl Serialize for MacroResult
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for MacroResult
impl RefUnwindSafe for MacroResult
impl Send for MacroResult
impl Sync for MacroResult
impl Unpin for MacroResult
impl UnwindSafe for MacroResult
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> ImplicitClone for Twhere
T: Clone,
impl<T> ImplicitClone for Twhere
T: Clone,
fn clone_quote_var(&self) -> Self
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