pub struct FieldDetails {
pub id: Option<String>,
pub key: Option<String>,
pub name: Option<String>,
pub custom: Option<bool>,
pub orderable: Option<bool>,
pub navigable: Option<bool>,
pub searchable: Option<bool>,
pub clause_names: Option<Vec<String>>,
pub scope: Option<Scope>,
pub schema: Option<Box<JsonTypeBean>>,
}
Expand description
FieldDetails : Details about a field.
Fields§
§id: Option<String>
The ID of the field.
key: Option<String>
The key of the field.
name: Option<String>
The name of the field.
custom: Option<bool>
Whether the field is a custom field.
orderable: Option<bool>
Whether the content of the field can be used to order lists.
Whether the field can be used as a column on the issue navigator.
searchable: Option<bool>
Whether the content of the field can be searched.
clause_names: Option<Vec<String>>
The names that can be used to reference the field in an advanced search. For more information, see Advanced searching - fields reference.
scope: Option<Scope>
The scope of the field.
schema: Option<Box<JsonTypeBean>>
The data schema for the field.
Implementations§
Source§impl FieldDetails
impl FieldDetails
Sourcepub fn new() -> FieldDetails
pub fn new() -> FieldDetails
Details about a field.
Trait Implementations§
Source§impl Clone for FieldDetails
impl Clone for FieldDetails
Source§fn clone(&self) -> FieldDetails
fn clone(&self) -> FieldDetails
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 FieldDetails
impl Debug for FieldDetails
Source§impl Default for FieldDetails
impl Default for FieldDetails
Source§fn default() -> FieldDetails
fn default() -> FieldDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FieldDetails
impl<'de> Deserialize<'de> for FieldDetails
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 FieldDetails
impl PartialEq for FieldDetails
Source§impl Serialize for FieldDetails
impl Serialize for FieldDetails
impl StructuralPartialEq for FieldDetails
Auto Trait Implementations§
impl Freeze for FieldDetails
impl RefUnwindSafe for FieldDetails
impl Send for FieldDetails
impl Sync for FieldDetails
impl Unpin for FieldDetails
impl UnwindSafe for FieldDetails
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