pub struct ToggleFeatureForProjectParams {
pub project_id_or_key: String,
pub feature_key: String,
pub project_feature_state: ProjectFeatureState,
}Expand description
struct for passing parameters to the method toggle_feature_for_project
Fields§
§project_id_or_key: StringThe ID or (case-sensitive) key of the project.
feature_key: StringThe key of the feature.
project_feature_state: ProjectFeatureStateDetails of the feature state change.
Trait Implementations§
Source§impl Clone for ToggleFeatureForProjectParams
impl Clone for ToggleFeatureForProjectParams
Source§fn clone(&self) -> ToggleFeatureForProjectParams
fn clone(&self) -> ToggleFeatureForProjectParams
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 Default for ToggleFeatureForProjectParams
impl Default for ToggleFeatureForProjectParams
Source§fn default() -> ToggleFeatureForProjectParams
fn default() -> ToggleFeatureForProjectParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ToggleFeatureForProjectParams
impl RefUnwindSafe for ToggleFeatureForProjectParams
impl Send for ToggleFeatureForProjectParams
impl Sync for ToggleFeatureForProjectParams
impl Unpin for ToggleFeatureForProjectParams
impl UnwindSafe for ToggleFeatureForProjectParams
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