Struct fastly_api::apis::acl_entry_api::CreateAclEntryParams
source · pub struct CreateAclEntryParams {
pub service_id: String,
pub acl_id: String,
pub acl_entry: Option<AclEntry>,
}
Expand description
struct for passing parameters to the method create_acl_entry
Fields§
§service_id: String
Alphanumeric string identifying the service.
acl_id: String
Alphanumeric string identifying a ACL.
acl_entry: Option<AclEntry>
Trait Implementations§
source§impl Clone for CreateAclEntryParams
impl Clone for CreateAclEntryParams
source§fn clone(&self) -> CreateAclEntryParams
fn clone(&self) -> CreateAclEntryParams
Returns a copy 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 CreateAclEntryParams
impl Debug for CreateAclEntryParams
source§impl Default for CreateAclEntryParams
impl Default for CreateAclEntryParams
source§fn default() -> CreateAclEntryParams
fn default() -> CreateAclEntryParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for CreateAclEntryParams
impl Send for CreateAclEntryParams
impl Sync for CreateAclEntryParams
impl Unpin for CreateAclEntryParams
impl UnwindSafe for CreateAclEntryParams
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