use Cow;
use ;
use crateAnyId;
/// Unique identifier for an image, `Cow<'static, str>` newtype.
///
/// Must begin with a letter or underscore, and contain only letters, numbers,
/// and underscores.
///
/// # Examples
///
/// The following are all examples of valid `ImageId`s:
///
/// ```rust
/// # use dot_ix::model::{image_id, ImageId};
/// #
/// let _snake = image_id!("snake_case");
/// let _camel = image_id!("camelCase");
/// let _pascal = image_id!("PascalCase");
/// ```
;
id_newtype!;