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

Required Methods§

source

fn get(fabric_id: String) -> ZonesGetResponse

source

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

Implementors§