pub enum PortfolioSeriesWindowPeriod {
X1d,
X1w,
X1m,
All,
}Expand description
Closed portfolio period token
JSON schema
{
"description": "Closed portfolio period token",
"type": "string",
"enum": [
"1d",
"1w",
"1m",
"all"
]
}Variants§
Trait Implementations§
Source§impl Clone for PortfolioSeriesWindowPeriod
impl Clone for PortfolioSeriesWindowPeriod
Source§fn clone(&self) -> PortfolioSeriesWindowPeriod
fn clone(&self) -> PortfolioSeriesWindowPeriod
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 PortfolioSeriesWindowPeriod
Source§impl Debug for PortfolioSeriesWindowPeriod
impl Debug for PortfolioSeriesWindowPeriod
Source§impl<'de> Deserialize<'de> for PortfolioSeriesWindowPeriod
impl<'de> Deserialize<'de> for PortfolioSeriesWindowPeriod
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
impl Eq for PortfolioSeriesWindowPeriod
Source§impl Hash for PortfolioSeriesWindowPeriod
impl Hash for PortfolioSeriesWindowPeriod
Source§impl Ord for PortfolioSeriesWindowPeriod
impl Ord for PortfolioSeriesWindowPeriod
Source§fn cmp(&self, other: &PortfolioSeriesWindowPeriod) -> Ordering
fn cmp(&self, other: &PortfolioSeriesWindowPeriod) -> 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 PartialOrd for PortfolioSeriesWindowPeriod
impl PartialOrd for PortfolioSeriesWindowPeriod
impl StructuralPartialEq for PortfolioSeriesWindowPeriod
Source§impl TryFrom<&String> for PortfolioSeriesWindowPeriod
impl TryFrom<&String> for PortfolioSeriesWindowPeriod
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for PortfolioSeriesWindowPeriod
impl TryFrom<&str> for PortfolioSeriesWindowPeriod
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for PortfolioSeriesWindowPeriod
impl TryFrom<String> for PortfolioSeriesWindowPeriod
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for PortfolioSeriesWindowPeriod
impl RefUnwindSafe for PortfolioSeriesWindowPeriod
impl Send for PortfolioSeriesWindowPeriod
impl Sync for PortfolioSeriesWindowPeriod
impl Unpin for PortfolioSeriesWindowPeriod
impl UnsafeUnpin for PortfolioSeriesWindowPeriod
impl UnwindSafe for PortfolioSeriesWindowPeriod
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