Struct datafusion_python::store::PyLocalFileSystemContext
source · pub struct PyLocalFileSystemContext {
pub inner: Arc<LocalFileSystem>,
}
Fields§
§inner: Arc<LocalFileSystem>
Trait Implementations§
source§impl Clone for PyLocalFileSystemContext
impl Clone for PyLocalFileSystemContext
source§fn clone(&self) -> PyLocalFileSystemContext
fn clone(&self) -> PyLocalFileSystemContext
Returns a copy 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 PyLocalFileSystemContext
impl Debug for PyLocalFileSystemContext
source§impl PyClass for PyLocalFileSystemContext
impl PyClass for PyLocalFileSystemContext
source§impl PyClassImpl for PyLocalFileSystemContext
impl PyClassImpl for PyLocalFileSystemContext
source§const IS_BASETYPE: bool = true
const IS_BASETYPE: bool = true
#[pyclass(subclass)]
source§const IS_SUBCLASS: bool = false
const IS_SUBCLASS: bool = false
#[pyclass(extends=…)]
source§const IS_MAPPING: bool = false
const IS_MAPPING: bool = false
#[pyclass(mapping)]
source§const IS_SEQUENCE: bool = false
const IS_SEQUENCE: bool = false
#[pyclass(sequence)]
§type Layout = PyCell<PyLocalFileSystemContext>
type Layout = PyCell<PyLocalFileSystemContext>
Layout
§type ThreadChecker = ThreadCheckerStub<PyLocalFileSystemContext>
type ThreadChecker = ThreadCheckerStub<PyLocalFileSystemContext>
This handles following two situations: Read more
§type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::MutableChild
type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::MutableChild
Immutable or mutable
§type BaseNativeType = PyAny
type BaseNativeType = PyAny
The closest native ancestor. This is
PyAny
by default, and when you declare
#[pyclass(extends=PyDict)]
, it’s PyDict
.fn items_iter() -> PyClassItemsIter
fn lazy_type_object() -> &'static LazyTypeObject<Self>
fn dict_offset() -> Option<isize>
fn weaklist_offset() -> Option<isize>
source§impl PyClassNewTextSignature<PyLocalFileSystemContext> for PyClassImplCollector<PyLocalFileSystemContext>
impl PyClassNewTextSignature<PyLocalFileSystemContext> for PyClassImplCollector<PyLocalFileSystemContext>
fn new_text_signature(self) -> Option<&'static str>
source§impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a PyLocalFileSystemContext
impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a PyLocalFileSystemContext
source§impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a mut PyLocalFileSystemContext
impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a mut PyLocalFileSystemContext
source§impl PyMethods<PyLocalFileSystemContext> for PyClassImplCollector<PyLocalFileSystemContext>
impl PyMethods<PyLocalFileSystemContext> for PyClassImplCollector<PyLocalFileSystemContext>
fn py_methods(self) -> &'static PyClassItems
source§impl PyTypeInfo for PyLocalFileSystemContext
impl PyTypeInfo for PyLocalFileSystemContext
§type AsRefTarget = PyCell<PyLocalFileSystemContext>
type AsRefTarget = PyCell<PyLocalFileSystemContext>
Utility type to make Py::as_ref work.
source§fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
Returns the PyTypeObject instance for this type.
source§fn type_object(py: Python<'_>) -> &PyType
fn type_object(py: Python<'_>) -> &PyType
Returns the safe abstraction over the type object.
source§fn is_type_of(object: &PyAny) -> bool
fn is_type_of(object: &PyAny) -> bool
Checks if
object
is an instance of this type or a subclass of this type.source§fn is_exact_type_of(object: &PyAny) -> bool
fn is_exact_type_of(object: &PyAny) -> bool
Checks if
object
is an instance of this type.Auto Trait Implementations§
impl RefUnwindSafe for PyLocalFileSystemContext
impl Send for PyLocalFileSystemContext
impl Sync for PyLocalFileSystemContext
impl Unpin for PyLocalFileSystemContext
impl UnwindSafe for PyLocalFileSystemContext
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