behaviortree-core 0.1.0

Core implementaion of behaviortree
Documentation
// Copyright © 2025 Stephan Kunz
//! [`behaviortree`](crate) xml module.

pub mod creator;
pub mod error;

#[cfg(test)]
mod tests {
	use super::*;

	// check, that the auto traits are available
	const fn is_normal<T: Sized + Send + Sync>() {}

	#[test]
	const fn normal_types() {
		is_normal::<error::Error>();
		is_normal::<&error::Error>();
		is_normal::<creator::XmlCreator>();
		is_normal::<&creator::XmlCreator>();
	}
}