pub enum Pull {
All(PullAll),
Level(PullLevel<Plan>),
}
Expand description
@TODO
Variants§
Implementations§
Source§impl Pull
impl Pull
Sourcepub fn dependencies(&self) -> Dependencies
pub fn dependencies(&self) -> Dependencies
See Implementable::dependencies, as Pull v2 can’t implement Implementable directly.
Sourcepub fn implement<'b, T, I, S>(
&self,
nested: &mut Iterative<'b, S, u64>,
local_arrangements: &HashMap<String, Variable<Iterative<'b, S, u64>, Vec<Value>, isize>>,
context: &mut I,
) -> (HashMap<PathId, Stream<S, (Vec<Value>, S::Timestamp, isize)>>, ShutdownHandle)
pub fn implement<'b, T, I, S>( &self, nested: &mut Iterative<'b, S, u64>, local_arrangements: &HashMap<String, Variable<Iterative<'b, S, u64>, Vec<Value>, isize>>, context: &mut I, ) -> (HashMap<PathId, Stream<S, (Vec<Value>, S::Timestamp, isize)>>, ShutdownHandle)
See Implementable::implement, as Pull v2 can’t implement Implementable directly.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Pull
impl<'de> Deserialize<'de> for Pull
Source§fn 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
Source§impl Ord for Pull
impl Ord for Pull
Source§impl PartialOrd for Pull
impl PartialOrd for Pull
impl Eq for Pull
impl StructuralPartialEq for Pull
Auto Trait Implementations§
impl Freeze for Pull
impl RefUnwindSafe for Pull
impl Send for Pull
impl Sync for Pull
impl Unpin for Pull
impl UnwindSafe for Pull
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