Struct Instance
pub struct Instance { /* private fields */ }
Expand description
The type of each instance of image that will be passed in to the model.
Implementations§
§impl Instance
impl Instance
pub fn file_path(&self) -> &Path
pub fn country(&self) -> Option<&str>
pub fn admin1_region(&self) -> Option<&str>
pub fn new(
file_path: PathBuf,
country: Option<String>,
admin1_region: Option<String>,
) -> Instance
pub fn new( file_path: PathBuf, country: Option<String>, admin1_region: Option<String>, ) -> Instance
Constructs the Instance
from given input.
pub fn from_path_buf(file_path: PathBuf) -> Instance
pub fn from_path_buf(file_path: PathBuf) -> Instance
Constructs the Instance
from only the given file path with other elements set to
Option::None
.
Trait Implementations§
§impl<'de> Deserialize<'de> for Instance
impl<'de> Deserialize<'de> for Instance
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Instance, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Instance, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Instance
impl RefUnwindSafe for Instance
impl Send for Instance
impl Sync for Instance
impl Unpin for Instance
impl UnwindSafe for Instance
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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