FluentFieldAssertions is a procedural macro for generating fluent assertions on fields.
This is basic case.
```rust use fluentfieldassertions::FluentFieldAssertions;
struct User { id: usize, name: String, }
User { id: 1, name: "Alice".tostring(), } .ideq(1) .nameeq("Alice".tostring()); ```
You can also use in generic struct.
```rust use core::fmt::Debug; use fluentfieldassertions::FluentFieldAssertions;
struct Point
Point { x: 1, y: 2 }.xeq(1).yeq(2); ```