fastly 0.12.0

Fastly Compute API
Documentation
1
2
3
4
5
6
7
8
9
10
//! Experimental shielding support. See deprecation notice.

use crate::shielding;

#[deprecated(
    since = "0.11.4",
    note = "The Shield object is not longer experimental. Please use `fastly::shielding::Shield` instead."
)]
/// Experimental shielding support. See deprecation notice.
pub type Shield = shielding::Shield;