pub struct ActorInputBean {
pub user: Option<Vec<String>>,
pub group: Option<Vec<String>>,
}
Fields§
§user: Option<Vec<String>>
The account IDs of the users to add as default actors. This parameter accepts a comma-separated list. For example, \"user\":[\"5b10a2844c20165700ede21g\", \"5b109f2e9729b51b54dc274d\"]
.
group: Option<Vec<String>>
The name of the group to add as a default actor. This parameter accepts a comma-separated list. For example, \"group\":[\"project-admin\", \"jira-developers\"]
.
Implementations§
Source§impl ActorInputBean
impl ActorInputBean
pub fn new() -> ActorInputBean
Trait Implementations§
Source§impl Clone for ActorInputBean
impl Clone for ActorInputBean
Source§fn clone(&self) -> ActorInputBean
fn clone(&self) -> ActorInputBean
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 ActorInputBean
impl Debug for ActorInputBean
Source§impl Default for ActorInputBean
impl Default for ActorInputBean
Source§fn default() -> ActorInputBean
fn default() -> ActorInputBean
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActorInputBean
impl<'de> Deserialize<'de> for ActorInputBean
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 ActorInputBean
impl PartialEq for ActorInputBean
Source§impl Serialize for ActorInputBean
impl Serialize for ActorInputBean
impl StructuralPartialEq for ActorInputBean
Auto Trait Implementations§
impl Freeze for ActorInputBean
impl RefUnwindSafe for ActorInputBean
impl Send for ActorInputBean
impl Sync for ActorInputBean
impl Unpin for ActorInputBean
impl UnwindSafe for ActorInputBean
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