pub struct PreviewTree(/* private fields */);Expand description
A tree that shows what a tree would look like after applying a transform.
Trait Implementations§
Source§impl<'py> IntoPyObject<'py> for PreviewTree
impl<'py> IntoPyObject<'py> for PreviewTree
Source§type Output = Bound<'py, <PreviewTree as IntoPyObject<'py>>::Target>
type Output = Bound<'py, <PreviewTree as IntoPyObject<'py>>::Target>
The smart pointer type to use. Read more
Source§type Error = Infallible
type Error = Infallible
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for PreviewTree
impl !RefUnwindSafe for PreviewTree
impl Send for PreviewTree
impl Sync for PreviewTree
impl Unpin for PreviewTree
impl UnsafeUnpin for PreviewTree
impl UnwindSafe for PreviewTree
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<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
Source§fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
Converts
self into an owned Python object, dropping type information.