pub struct PmmProjectAssetBinding {
pub scope: &'static str,
pub asset_kind: &'static str,
pub owner_index: Option<usize>,
pub document_index: Option<u8>,
pub owner_name: Option<String>,
pub path: String,
pub path_offset: Option<usize>,
pub asset_reference_index: Option<usize>,
pub asset_reference_offset: Option<usize>,
pub asset_reference_end_offset: Option<usize>,
pub asset_reference_confidence: Option<&'static str>,
}Fields§
§scope: &'static str§asset_kind: &'static str§owner_index: Option<usize>§document_index: Option<u8>§owner_name: Option<String>§path: String§path_offset: Option<usize>§asset_reference_index: Option<usize>§asset_reference_offset: Option<usize>§asset_reference_end_offset: Option<usize>§asset_reference_confidence: Option<&'static str>Trait Implementations§
Source§impl Clone for PmmProjectAssetBinding
impl Clone for PmmProjectAssetBinding
Source§fn clone(&self) -> PmmProjectAssetBinding
fn clone(&self) -> PmmProjectAssetBinding
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PmmProjectAssetBinding
impl Debug for PmmProjectAssetBinding
Auto Trait Implementations§
impl Freeze for PmmProjectAssetBinding
impl RefUnwindSafe for PmmProjectAssetBinding
impl Send for PmmProjectAssetBinding
impl Sync for PmmProjectAssetBinding
impl Unpin for PmmProjectAssetBinding
impl UnsafeUnpin for PmmProjectAssetBinding
impl UnwindSafe for PmmProjectAssetBinding
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<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