pub enum PortfolioWindowCoverage {
Complete,
Partial,
None,
}Expand description
History coverage for the requested period
JSON schema
{
"description": "History coverage for the requested period",
"type": "string",
"enum": [
"complete",
"partial",
"none"
]
}Variants§
Trait Implementations§
Source§impl Clone for PortfolioWindowCoverage
impl Clone for PortfolioWindowCoverage
Source§fn clone(&self) -> PortfolioWindowCoverage
fn clone(&self) -> PortfolioWindowCoverage
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 moreimpl Copy for PortfolioWindowCoverage
Source§impl Debug for PortfolioWindowCoverage
impl Debug for PortfolioWindowCoverage
Source§impl<'de> Deserialize<'de> for PortfolioWindowCoverage
impl<'de> Deserialize<'de> for PortfolioWindowCoverage
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
Source§impl Display for PortfolioWindowCoverage
impl Display for PortfolioWindowCoverage
impl Eq for PortfolioWindowCoverage
Source§impl FromStr for PortfolioWindowCoverage
impl FromStr for PortfolioWindowCoverage
Source§impl Hash for PortfolioWindowCoverage
impl Hash for PortfolioWindowCoverage
Source§impl Ord for PortfolioWindowCoverage
impl Ord for PortfolioWindowCoverage
Source§fn cmp(&self, other: &PortfolioWindowCoverage) -> Ordering
fn cmp(&self, other: &PortfolioWindowCoverage) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PortfolioWindowCoverage
impl PartialEq for PortfolioWindowCoverage
Source§impl PartialOrd for PortfolioWindowCoverage
impl PartialOrd for PortfolioWindowCoverage
Source§impl Serialize for PortfolioWindowCoverage
impl Serialize for PortfolioWindowCoverage
impl StructuralPartialEq for PortfolioWindowCoverage
Source§impl TryFrom<&String> for PortfolioWindowCoverage
impl TryFrom<&String> for PortfolioWindowCoverage
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for PortfolioWindowCoverage
impl TryFrom<&str> for PortfolioWindowCoverage
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for PortfolioWindowCoverage
impl TryFrom<String> for PortfolioWindowCoverage
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for PortfolioWindowCoverage
impl RefUnwindSafe for PortfolioWindowCoverage
impl Send for PortfolioWindowCoverage
impl Sync for PortfolioWindowCoverage
impl Unpin for PortfolioWindowCoverage
impl UnsafeUnpin for PortfolioWindowCoverage
impl UnwindSafe for PortfolioWindowCoverage
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