1 2 3 4 5 6 7 8 9 10 11
use super::super::*; pub(super) fn observation_gap( key: impl Into<String>, description: impl Into<String>, ) -> DeploymentObservationGapV1 { DeploymentObservationGapV1 { key: key.into(), description: description.into(), } }