pub struct CreateDef<Pnt, StateSrc> {
pub template: TemplateDef<PointTemplateDef<Pnt>>,
pub properties: SetProperties,
pub strategy: Strategy,
pub state: StateSrc,
}
Fields
template: TemplateDef<PointTemplateDef<Pnt>>
properties: SetProperties
strategy: Strategy
state: StateSrc
Implementations
sourceimpl CreateDef<PointDef<RouteSeg, PointSeg>, StateSrc>
impl CreateDef<PointDef<RouteSeg, PointSeg>, StateSrc>
pub fn fulfillment(self, bin: Bin) -> Create
pub fn to_wave_proto(self) -> DirectedProto
Trait Implementations
sourceimpl<'de, Pnt, StateSrc> Deserialize<'de> for CreateDef<Pnt, StateSrc>where
Pnt: Deserialize<'de>,
StateSrc: Deserialize<'de>,
impl<'de, Pnt, StateSrc> Deserialize<'de> for CreateDef<Pnt, StateSrc>where
Pnt: Deserialize<'de>,
StateSrc: Deserialize<'de>,
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<Pnt: PartialEq, StateSrc: PartialEq> PartialEq<CreateDef<Pnt, StateSrc>> for CreateDef<Pnt, StateSrc>
impl<Pnt: PartialEq, StateSrc: PartialEq> PartialEq<CreateDef<Pnt, StateSrc>> for CreateDef<Pnt, StateSrc>
sourceimpl<Pnt, StateSrc> Serialize for CreateDef<Pnt, StateSrc>where
Pnt: Serialize,
StateSrc: Serialize,
impl<Pnt, StateSrc> Serialize for CreateDef<Pnt, StateSrc>where
Pnt: Serialize,
StateSrc: Serialize,
sourceimpl ToResolved<CreateDef<PointDef<RouteSeg, PointSegCtx>, StateSrc>> for CreateVar
impl ToResolved<CreateDef<PointDef<RouteSeg, PointSegCtx>, StateSrc>> for CreateVar
impl<Pnt: Eq, StateSrc: Eq> Eq for CreateDef<Pnt, StateSrc>
impl<Pnt, StateSrc> StructuralEq for CreateDef<Pnt, StateSrc>
impl<Pnt, StateSrc> StructuralPartialEq for CreateDef<Pnt, StateSrc>
Auto Trait Implementations
impl<Pnt, StateSrc> RefUnwindSafe for CreateDef<Pnt, StateSrc>where
Pnt: RefUnwindSafe,
StateSrc: RefUnwindSafe,
impl<Pnt, StateSrc> Send for CreateDef<Pnt, StateSrc>where
Pnt: Send,
StateSrc: Send,
impl<Pnt, StateSrc> Sync for CreateDef<Pnt, StateSrc>where
Pnt: Sync,
StateSrc: Sync,
impl<Pnt, StateSrc> Unpin for CreateDef<Pnt, StateSrc>where
Pnt: Unpin,
StateSrc: Unpin,
impl<Pnt, StateSrc> UnwindSafe for CreateDef<Pnt, StateSrc>where
Pnt: UnwindSafe,
StateSrc: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<I, T> ExtractContext<I, ()> for T
impl<I, T> ExtractContext<I, ()> for T
sourcefn extract_context(self, _original_input: I)
fn extract_context(self, _original_input: I)
Given the context attached to a nom error, and given the original
input to the nom parser, extract more the useful context information. Read more
sourceimpl<I> RecreateContext<I> for I
impl<I> RecreateContext<I> for I
sourcefn recreate_context(_original_input: I, tail: I) -> I
fn recreate_context(_original_input: I, tail: I) -> I
Given the original input, as well as the context reported by nom,
recreate a context in the original string where the error occurred. Read more