surrealdb-sql 1.1.0

Full type definitions for the SurrealQL query language
Documentation
/// Returns whether the status code is an null body status
pub fn is_null_body_status(status: u16) -> bool {
	matches!(status, 101 | 103 | 204 | 205 | 304)
}

/// Returns whether the status code is an ok status
pub fn is_ok_status(status: u16) -> bool {
	(200..=299).contains(&status)
}

/// Returns whether the status code is an redirect status
pub fn is_redirect_status(status: u16) -> bool {
	[301, 302, 303, 307, 308].contains(&status)
}

/// Test whether a string matches the reason phrase http spec production.
pub fn is_reason_phrase(text: &str) -> bool {
	// Cannot be empty
	!text.is_empty()
		// all characters match VCHAR (0x21..=0x7E), obs-text (0x80..=0xFF), HTAB, or SP
		&& text.as_bytes().iter().all(|b| matches!(b,0x21..=0x7E | 0x80..=0xFF | b'\t' | b' '))
}