pub struct SetProjectPropertyParams {
pub project_id_or_key: String,
pub property_key: String,
pub body: Option<Value>,
}
Expand description
struct for passing parameters to the method set_project_property
Fields§
§project_id_or_key: String
The project ID or project key (case sensitive).
property_key: String
The key of the project property. The maximum length is 255 characters.
body: Option<Value>
Trait Implementations§
Source§impl Clone for SetProjectPropertyParams
impl Clone for SetProjectPropertyParams
Source§fn clone(&self) -> SetProjectPropertyParams
fn clone(&self) -> SetProjectPropertyParams
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 SetProjectPropertyParams
impl Debug for SetProjectPropertyParams
Source§impl Default for SetProjectPropertyParams
impl Default for SetProjectPropertyParams
Source§fn default() -> SetProjectPropertyParams
fn default() -> SetProjectPropertyParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SetProjectPropertyParams
impl RefUnwindSafe for SetProjectPropertyParams
impl Send for SetProjectPropertyParams
impl Sync for SetProjectPropertyParams
impl Unpin for SetProjectPropertyParams
impl UnwindSafe for SetProjectPropertyParams
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