pub trait Zones {
    // Required methods
    fn get(&self, fabric_id: String) -> ZonesGetResponse;
    fn post(&mut self, fabric_id: String, body: Zone) -> ZonesPostResponse;
}

Required Methods§

source

fn get(&self, fabric_id: String) -> ZonesGetResponse

source

fn post(&mut self, fabric_id: String, body: Zone) -> ZonesPostResponse

Implementors§