Struct PythonDslResolver
pub struct PythonDslResolver { /* private fields */ }Available on crate feature
python only.Trait Implementations§
§impl Debug for PythonDslResolver
impl Debug for PythonDslResolver
§impl<'de> Deserialize<'de> for PythonDslResolver
impl<'de> Deserialize<'de> for PythonDslResolver
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PythonDslResolver, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PythonDslResolver, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl DslResolverTrait for PythonDslResolver
impl DslResolverTrait for PythonDslResolver
fn name(&self) -> Result<PlSmallStr, PolarsError>
fn schema( &self, py_dsl_resolve_threadpool: Arc<PyThreadPool>, ) -> Result<Pin<Box<dyn Future<Output = Result<Arc<Schema<DataType, ()>>, PolarsError>> + Send>>, PolarsError>
fn resolve_dsl( &self, args: ResolveDslArgs, filters_eir: Buffer<ExprIR>, existing_resolved_version_key: Option<PlSmallStr>, expr_arena: &Arena<AExpr>, resolver_schema: Arc<Schema<DataType, ()>>, py_dsl_resolve_threadpool: Arc<PyThreadPool>, ) -> Result<Pin<Box<dyn Future<Output = Result<ResolvedDsl, PolarsError>> + Send>>, PolarsError>
fn cse_eq(&self, other: &PythonDslResolver) -> Result<bool, PolarsError>
§impl Hash for PythonDslResolver
impl Hash for PythonDslResolver
§impl Serialize for PythonDslResolver
impl Serialize for PythonDslResolver
§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 !RefUnwindSafe for PythonDslResolver
impl Freeze for PythonDslResolver
impl Send for PythonDslResolver
impl Sync for PythonDslResolver
impl Unpin for PythonDslResolver
impl UnsafeUnpin for PythonDslResolver
impl UnwindSafe for PythonDslResolver
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> 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