pub enum DataSources {
Institution,
InstitutionMask,
User,
}
Expand description
A description of the source of data for a given product/data type.
INSTITUTION
: The institution supports this product, and the data was provided by the institution.
INSTITUTION_MASK
: The user manually provided the full account number, which was matched to the account mask provided by the institution. Only applicable to the numbers
data type.
USER
: The institution does not support this product, and the data was manually provided by the user.
Variants§
Trait Implementations§
Source§impl Clone for DataSources
impl Clone for DataSources
Source§fn clone(&self) -> DataSources
fn clone(&self) -> DataSources
Returns a copy 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 DataSources
impl Debug for DataSources
Source§impl<'de> Deserialize<'de> for DataSources
impl<'de> Deserialize<'de> for DataSources
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DataSources
impl RefUnwindSafe for DataSources
impl Send for DataSources
impl Sync for DataSources
impl Unpin for DataSources
impl UnwindSafe for DataSources
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