pub struct FulltextContentFactory {
pub sha1: Option<String>,
pub storage_kind: String,
pub key: Key,
pub parents: Option<Vec<Key>>,
}Fields§
§sha1: Option<String>§storage_kind: String§key: Key§parents: Option<Vec<Key>>Implementations§
Trait Implementations§
Source§impl Clone for FulltextContentFactory
impl Clone for FulltextContentFactory
Source§fn clone(&self) -> FulltextContentFactory
fn clone(&self) -> FulltextContentFactory
Returns a duplicate 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 FulltextContentFactory
impl Debug for FulltextContentFactory
Source§impl<'py> IntoPyObject<'py> for FulltextContentFactory
impl<'py> IntoPyObject<'py> for FulltextContentFactory
Source§type Output = Bound<'py, <FulltextContentFactory as IntoPyObject<'py>>::Target>
type Output = Bound<'py, <FulltextContentFactory as IntoPyObject<'py>>::Target>
The smart pointer type to use. Read more
Auto Trait Implementations§
impl Freeze for FulltextContentFactory
impl RefUnwindSafe for FulltextContentFactory
impl Send for FulltextContentFactory
impl Sync for FulltextContentFactory
impl Unpin for FulltextContentFactory
impl UnwindSafe for FulltextContentFactory
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.