keystone-engine 0.1.0

Rust bindings for the Keystone Engine assembler library.
Documentation
namespace Keystone
{
    /// <summary>
    /// Defines an encoded instruction or group of instructions.
    /// </summary>
    public sealed class EncodedData
    {
        /// <summary>
        ///   Constructs the encoded data.
        /// </summary>
        internal EncodedData(byte[] buffer, int statementCount, ulong address)
        {
            Buffer = buffer;
            Address = address;
            StatementCount = statementCount;
        }

        /// <summary>
        ///   Gets the address of the first instruction for this operation.
        /// </summary>
        public ulong Address { get; }

        /// <summary>
        ///   Gets the result of an assembly operation.
        /// </summary>
        public byte[] Buffer { get; }

        /// <summary>
        ///   Gets the number of statements found.
        /// </summary>
        public int StatementCount { get; }
    }
}