use std::fmt::Display;
/// sh:minLength specifies the minimum string length of each value node that
/// satisfies the condition. This can be applied to any literals and IRIs, but
/// not to blank nodes.
///
/// https://www.w3.org/TR/shacl/#MinLengthConstraintComponent
#[derive(Debug, Clone)]
pub struct MinLength {
min_length: isize,
}
impl MinLength {
pub fn new(min_length: isize) -> Self {
MinLength { min_length }
}
pub fn min_length(&self) -> isize {
self.min_length
}
}
impl Display for MinLength {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "MinLength: {}", self.min_length())
}
}