pub struct MoveFieldBean {
pub after: Option<String>,
pub position: Option<Position>,
}
Fields§
§after: Option<String>
The ID of the screen tab field after which to place the moved screen tab field. Required if position
isn’t provided.
position: Option<Position>
The named position to which the screen tab field should be moved. Required if after
isn’t provided.
Implementations§
Source§impl MoveFieldBean
impl MoveFieldBean
pub fn new() -> MoveFieldBean
Trait Implementations§
Source§impl Clone for MoveFieldBean
impl Clone for MoveFieldBean
Source§fn clone(&self) -> MoveFieldBean
fn clone(&self) -> MoveFieldBean
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 MoveFieldBean
impl Debug for MoveFieldBean
Source§impl Default for MoveFieldBean
impl Default for MoveFieldBean
Source§fn default() -> MoveFieldBean
fn default() -> MoveFieldBean
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MoveFieldBean
impl<'de> Deserialize<'de> for MoveFieldBean
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 MoveFieldBean
impl PartialEq for MoveFieldBean
Source§impl Serialize for MoveFieldBean
impl Serialize for MoveFieldBean
impl StructuralPartialEq for MoveFieldBean
Auto Trait Implementations§
impl Freeze for MoveFieldBean
impl RefUnwindSafe for MoveFieldBean
impl Send for MoveFieldBean
impl Sync for MoveFieldBean
impl Unpin for MoveFieldBean
impl UnwindSafe for MoveFieldBean
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