pub struct BasePipelineWithSelectedFlag {
pub id: Option<i32>,
pub name: Option<String>,
pub url_title: Option<String>,
pub order_nr: Option<i32>,
pub active: Option<bool>,
pub deal_probability: Option<bool>,
pub add_time: Option<String>,
pub update_time: Option<String>,
pub selected: Option<bool>,
}Fields§
§id: Option<i32>The ID of the pipeline
name: Option<String>The name of the pipeline
url_title: Option<String>The pipeline title displayed in the URL
order_nr: Option<i32>Defines the order of pipelines. First order (order_nr=0) is the default pipeline.
active: Option<bool>Whether this pipeline will be made inactive (hidden) or active
deal_probability: Option<bool>Whether deal probability is disabled or enabled for this pipeline
add_time: Option<String>The pipeline creation time. Format: YYYY-MM-DD HH:MM:SS.
update_time: Option<String>The pipeline update time. Format: YYYY-MM-DD HH:MM:SS.
selected: Option<bool>A boolean that shows if the pipeline is selected from a filter or not
Implementations§
Source§impl BasePipelineWithSelectedFlag
impl BasePipelineWithSelectedFlag
pub fn new() -> BasePipelineWithSelectedFlag
Trait Implementations§
Source§impl Clone for BasePipelineWithSelectedFlag
impl Clone for BasePipelineWithSelectedFlag
Source§fn clone(&self) -> BasePipelineWithSelectedFlag
fn clone(&self) -> BasePipelineWithSelectedFlag
Returns a duplicate 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 BasePipelineWithSelectedFlag
impl Debug for BasePipelineWithSelectedFlag
Source§impl<'de> Deserialize<'de> for BasePipelineWithSelectedFlag
impl<'de> Deserialize<'de> for BasePipelineWithSelectedFlag
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 PartialEq for BasePipelineWithSelectedFlag
impl PartialEq for BasePipelineWithSelectedFlag
Source§fn eq(&self, other: &BasePipelineWithSelectedFlag) -> bool
fn eq(&self, other: &BasePipelineWithSelectedFlag) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BasePipelineWithSelectedFlag
Auto Trait Implementations§
impl Freeze for BasePipelineWithSelectedFlag
impl RefUnwindSafe for BasePipelineWithSelectedFlag
impl Send for BasePipelineWithSelectedFlag
impl Sync for BasePipelineWithSelectedFlag
impl Unpin for BasePipelineWithSelectedFlag
impl UnwindSafe for BasePipelineWithSelectedFlag
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