pub struct UnidicArtifactMetadataOptions {
pub artifact_name: String,
pub generator: String,
pub payload_file_name: String,
pub payload_format: String,
pub source_name: String,
pub source_version: String,
pub source_lex_csv: String,
pub index_options: UnidicIndexOptions,
pub query_defaults: DictionaryReadingOptions,
pub license: UnidicArtifactLicense,
}Expand description
Inputs used to generate artifact metadata for an index.
Fields§
§artifact_name: StringHuman-readable artifact name.
generator: StringTool or command that generated the artifact.
payload_file_name: StringBundle-relative payload file name.
payload_format: StringPayload serialization format.
source_name: StringSource dictionary name.
source_version: StringSource dictionary version.
source_lex_csv: StringSource lex.csv path.
index_options: UnidicIndexOptionsIndex build settings.
query_defaults: DictionaryReadingOptionsDefault query settings.
license: UnidicArtifactLicenseLicense metadata and references.
Trait Implementations§
Source§impl Clone for UnidicArtifactMetadataOptions
impl Clone for UnidicArtifactMetadataOptions
Source§fn clone(&self) -> UnidicArtifactMetadataOptions
fn clone(&self) -> UnidicArtifactMetadataOptions
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 PartialEq for UnidicArtifactMetadataOptions
impl PartialEq for UnidicArtifactMetadataOptions
Source§fn eq(&self, other: &UnidicArtifactMetadataOptions) -> bool
fn eq(&self, other: &UnidicArtifactMetadataOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for UnidicArtifactMetadataOptions
impl StructuralPartialEq for UnidicArtifactMetadataOptions
Auto Trait Implementations§
impl Freeze for UnidicArtifactMetadataOptions
impl RefUnwindSafe for UnidicArtifactMetadataOptions
impl Send for UnidicArtifactMetadataOptions
impl Sync for UnidicArtifactMetadataOptions
impl Unpin for UnidicArtifactMetadataOptions
impl UnsafeUnpin for UnidicArtifactMetadataOptions
impl UnwindSafe for UnidicArtifactMetadataOptions
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.